Flutter

What is runApp() function in flutter

In Flutter, The runApp() function is used to initialize the application and start it. It's basically a starting point on any flutter application, The...

SOLID Principal in dart – flutter

Hello, dart and flutter developers! Today's topic is SOLID principles in Dart. This is not about adding new language features; rather, it is about...

Flutter Redux – A state Management in flutter

We'll concentrate on the Flutter app and utilise Redux to control its state. Redux is an architecture for unidirectional data flow that makes it...

didChangeDependencies method in Flutter

In Flutter, The didChangeDependencies() override method comes in lifecycle of StatefulWidget. And is been called everytime whenever it see changes in dependencies of StatefulWidget. For...