mvcprovider 1.0.8
mvcprovider: ^1.0.8 copied to clipboard
Simple, sexy and clean sugar syntax to implement an MVC pattern architecture in Flutter with the Provider package without boilerplate code.
1.0.0 03-14-2020 #
First release
1.0.1 03-14-2020 #
Fixed dart warnings and added an example folder with an example :)
1.0.2 03-14-2020 #
Ran flutter lib/mvcprovider.dart
1.0.3 03-14-2020 #
Replaced module's root widget Material by a widget Container
1.0.4 03-15-2020 #
Removed View's "StatelessWidget extends" in order to use it as a mixin and so permit to use it with StatefulWidgets if needed
1.0.5 06-10-2020 #
Updated sample doc Added getters for model and ctrl properties in the View mixin in order use it while extending from a StatelessWidget without the "immutable class with non final fields" warning
1.0.6 06-30-2020 #
Little refacto And added ability to add declare new providers at module level with "providers" property in addition to the "dependencies"
1.0.7 07-16-2020 #
Added overridable method onReady to the Controller in order to retrieve or init some data or just to do all you need to do once just after the first rendering of your view.
1.0.8 08-12-2020 #
Removed "refresh()" method in the model and controller in order use the original provider method "notifyListeners()" to keep your syntax compatible with the original flutter code. Spreading error syntax has been removed. Readme and example has been updated.