Here they are in summary:
Read moreHow do I start making a Flutter?
Write your first Flutter app, part 1
Read moreWhat is Repository pattern Flutter?
The repository pattern is a software design pattern that decouples the data access logic from the business logic by introducing a centralized component called a repository .
Read moreHow does Flutter use Skia?
Skia is a 2D rendering engine written in C++ used in Google Chrome and Mozilla Firefox. Flutter requests a window from the underlying OS and entirely manages its own content in Skia using Dart . This means that all UI logic such as scrolling, touch events and animations have to be re-implemented in Flutter.
Read moreWhat is a Flutter project?
Flutter is a cross-platform mobile app development framework by Google and is an alternative to traditional Android or iOS development. It’s faster than traditional methods of native development in additon to running on both platforms at once without any major changes.
Read moreWhat is provider architecture in Flutter?
As the name suggests, Provider is a Flutter architecture that provides the current data model to the place where we currently need it . It contains some data and notifies observers when a change occurs. In Flutter SDK, this type is called a ChangeNotifier.
Read moreHow do you architect the Flutter app?
Setup base architecture of Flutter app using the Stacked plugin . Use dependency injection for layers separation. Code generator to generate boilerplate code for DI, routes, and JSON parsing. Make API calls using a Retrofit plugin (mostly Android developers might be familiar with it)
Read more