What App Arch Does The Flutter SDK Use
I am going to show you a trick to determine what app arch such as MVC, MVP, or MVVM the flutter SDK uses.
All front end SDKs have this thing where they have to implement animations that change the state of the user interface dynamically. Since that will also describe a relationship between states of the view it will be where we find the app arch pattern that the flutter SDK might use such as MVC, MVP, or MVVM.
So let’s start in the flutter animation package.
Here is what we have in the Flutter SDK animation package:
So let’s see the animation controller file, I will just show the AnimationController part: