7 followers
I’m a Flutter Developer with experience in developing multiple apps from scratch for a large user base. Connect with me for collaboration.
Hello everyone, I hope you are safe and doing well. I recently started working on an app template for a medicine shop in Flutter just for fun. I named it Medishop and designed a logo for it too. This app includes a login screen, signup screen, home s...
In the previous article, we have discussed the problem of using setState to update the app's state in the moderate or complex app, This part will cover the solution to those problems. Let's start. What we are going to learn in this article What is P...
State management is a little tricky topic when it comes to Flutter. We generally use setState for changing the value of fields and rebuilding the UI in beginning. setState works well and it is indeed a good approach. But there are few complications w...
We know everything is a widget in Flutter The very first code while creating a new project in Flutter starts with two types of widgets: Stateless and Stateful. What is the difference between them? Why Stateless Widget has less line of code tha...