Passing Parameters with AngularJS UI-Router | Nested Views
| | |

Passing Parameters with AngularJS UI-Router | Nested Views

Angularjs UI-Router is considered as developers first choice when it comes to working with SPA(Single Page Application). Most of the developers are not interested in Advance features of Top JavaScript Frameworks like Angular & React, they just want to use Routing solutions provided by these Frameworks. UI-Router makes it easier to work with nested Views. I have…

Load Data from Database to TreeView Asp.Net – Bootstrap Treeview
| | | | | |

Load Data from Database to TreeView Asp.Net – Bootstrap Treeview

Loading Data from Database to TreeView is difficult as compared to Loading Data into a Table. Let me explain first that why and in what case developers find it difficult. Above all, we need to understand the structure of the Database table from where we want to load data to a TreeView. Actually, TreeView is…

Angularjs UI-Router Nested Views with Asp.Net Core MVC Application
| | | | | | |

Angularjs UI-Router Nested Views with Asp.Net Core MVC Application

Angularjs UI-Router is still the best choice of developers for Routing Purpose. Even with powerful platforms like Asp.Net or Asp.Net Core when you need to load Nested Views and don’t want to reload your page every time then JavaScript’s Frameworks provide us the best Solution And Angular is one of them. Although Asp.Net Core provides Angular…

Car Location Tracking Android App With Firebase Tutorial | Part 2
| | | | | |

Car Location Tracking Android App With Firebase Tutorial | Part 2

This is the second part of the location tracking tutorial. I hope you guy’s have seen my previous article in which we’ve developed the Driver App. In this tutorial, we’re going to develop the Passenger App. Here, we are not going to do the same work which we’ve done in the previous article like creating…

Car Location Tracking Android App With Firebase Tutorial
| | | | |

Car Location Tracking Android App With Firebase Tutorial

In this tutorial, we’re building a car location tracking app like Careem and Uber. Although we’re not developing complete apps like Uber and Careem. But we’ll see how to online a driver and show the online driver in the passenger app and update the driver whenever its current location changed. For online and offline the…

Debugging Realtime Database Performance with Firebase Database Profiler
| | |

Debugging Realtime Database Performance with Firebase Database Profiler

Firebase Real-time database is built to handle high data traffic apps, but if you don’t architect your data properly you can run into problems such as slow queries, high database load and most of all expensive bandwidth. So happily, the Firebase developers built us a Database Profiler (firebase profiling) which helps us to understand what’s…

Android Room Persistence With LiveData
| | | | | |

Android Room Persistence With LiveData

Previously in our Room persistence article, we’ve discussed what are the basics of Room and how to simply work with it. Also, we’ve made a book library app using the Room persistence basic components. (If you haven’t read the previous article, I highly recommend you read it before proceeding it.) In this article, we’re gonna…

Android Image Upload Example using PHP with Source Code
| | |

Android Image Upload Example using PHP with Source Code

While learning Android, most of the developers find it difficult to upload an Image to Server from Android App using PHP Webservice as server-side. Sometimes you do nothing wrong in Android Code but Image doesn’t upload to the server. Sometimes you do not follow the same method to receive Image on the server as android application sending…

Android LiveData Transformation With Example | Map And SwicthMap
| | | |

Android LiveData Transformation With Example | Map And SwicthMap

In this article, we’re going to explore the Transformations of LiveData. Sometime there may be a case where you want to changes in the LiveData value before dispatching it to the Observer or you may need to return different LiveData based on some condition. Here comes the concept of Transformations. In the last article, we’ve…