stacked 1.2.4
stacked: ^1.2.4 copied to clipboard
An architecture and widgets for an MVVM inspired architecture in Flutter. It provides common functionalities required to build a large application in a understandable manner.
[1.2.4] - 2020-04-28 - onModelReady updates #
onModelReady
is not called every time the model is constructedonModelReady
is called after the current frame is rendered by usingpostFrameCallback
internally.
[1.2.3] - 2020-04-28 - Added BuildContext to ViewModelBuilder for WidgetBuilder #
[1.2.2+1] - 2020-04-27 - Updated ChangeLog order #
[1.2.2] - 2020-04-26 - Moved stream subscription to after ViewModel construction #
[1.2.1+2] - 2020-04-26 - Description Update 2 #
[1.2.1+1] - 2020-04-26 - Description Update #
[1.2.1] - 2020-04-26 - Added ViewModelBuilderWidget #
The ViewModelBuilderWidget
removes boiler plate code for using a ViewModelBuilder
to provide the View->ViewModel rebuild functionality.
[1.2.0] - 2020-04-24 - Added FutureViewmodel #
The FutureViewModel
removes boiler plate code for a ViewModel that depends on data returned from a Future.
[1.1.0] - 2020-04-23 - Added StreamViewModel #
The StreamViewModel
removes boiler plate code for listening to a Stream and notifying listeners as the data comes in.
[1.0.3+3] - 2020-04-23 - Added isBusy to BaseViewModel #
[1.0.3+2] - 2020-04-23 - Added Migration from provider_architecture to stacked #
[1.0.3+1] - 2020-04-22 - Updated Readme #
[1.0.3] - 2020-04-22 - Adds back setBusy call to BaseViewModel #
[1.0.2] - 2020-04-22 - Reactive Viewmodel updates #
Instead of depending on the user to call set reactive services we require an override to provide a list of services
[1.0.1] - 2020-04-21 - Readme instruction updates #
[1.0.0] - 2020-04-20 #
First release of the architecture containing all the initial required parts to build a full application.