flutter_meedu 5.0.1 copy "flutter_meedu: ^5.0.1" to clipboard
flutter_meedu: ^5.0.1 copied to clipboard

outdated

A simple State Managment, Dependency Injection, Reactive programming and Navigation for Flutter apps.

5.0.1 #

  • Updated to meedu: ^4.2.1

5.0.0 #

  • BREAKING CHANGE: Removed ScopedReader and replaced by BuilderRef.

Before: the watch function allways return the notifier linked to the provider passed as parameter to the watch function.

 Consumer(builder: (_, watch, __) {
     final controller = watch(counterProvider);
     return Text("${controller.counter}");
 })
 Consumer(builder: (_, watch, __) {
     final controller = watch(
       counterProvider.select((_) => _.counter),
     );
     return Text("${controller.counter}");
 })

After: now the consumer widget has replaced the watch parameter for one instance of BuilderRef with this change to listen the changes you need to use ref.watch

 Consumer(builder: (_, ref, __) {
     final controller = ref.watch(counterProvider);
    return Text("${controller.counter}");
 })

// or

 Consumer(builder: (_, ref, __) {
     final controller = ref.watch(
       counterProvider.select((_) => _.counter),
     );
    return Text("${controller.counter}");
 })

or if you want direct access to the value returned by counterProvider.select((_) => _.counter) you can use ref.select

 Consumer(builder: (_, ref, __) {
     final int counter = ref.select(
       counterProvider.select((_) => _.counter),
     );
    return Text("$counter");
 })
  • ref.watch can be used to listen the changes in a provider even you can use filters like .ids, .select and .when with ref.watch but it allways returns the notifier linked to the provider.

  • ref.select can be used to listen the changes in a provider only using filters like .select and .when and the value returned by ref.select depends of the value returned by the filters.

IMPORTANT: the .ids filter only should be used with ref.watch.

#

4.4.1 #

  • Fixed multiples rebuilds with custom transitions using named routes.

4.4.0 #

  • Added MultiProviderListener widget.

4.3.0 #

  • Added autoRemove and onRemove in dependency injection.

4.2.1 #

  • Added result parameter in pushReplacementNamed.

4.2.0 #

  • Added custom transitions for named routes.
  • Updated docs.

4.1.1 #

  • Added isDarkMode extension.

4.1.0+3 #

  • Added const constructor in PageWithArgumentsWidget class.

4.1.0+2 #

  • Added const constructor in PageWithArgumentsWidget class.

4.1.0+1 #

  • Added PageWithArgumentsWidget class.

4.1.0 #

  • Updated to meedu: ^4.1.0

4.0.0+2 #

  • Updated to meedu: ^4.0.0+1
  • Improved ConsumerWidget class.

4.0.0+1 #

  • Added comments in the consumer widget.

4.0.0-dev.0 #

  • Removed WatchFilter class.
  • Added .ids, .select and .when methods in SimpleProvider and StateProvider.

3.0.10 #

  • Added PageWithArguments Widget.

3.0.9 #

  • Updated to meedu: ^3.0.8

3.0.8+1 #

  • Updated README.

3.0.8 #

  • Updated to meedu: ^3.0.7

3.0.7 #

  • Updated to meedu: ^3.0.6
  • Added lint rules.

3.0.6 #

  • Updated to meedu: ^3.0.5

3.0.5 #

  • Updated Navigator Observer.

3.0.4 #

  • Updated to meedu: ^3.0.4

3.0.3 #

  • Updated to meedu: ^3.0.2

3.0.2 #

  • Updated tests

3.0.1 #

  • Updated to meedu: ^3.0.1

3.0.0+1 #

  • Updated README.MD

3.0.0 #

  • Ready for production

3.0.0-prev.22 #

  • Updated to meedu: ^3.0.0-prev.15

3.0.0-prev.21 #

  • Updated to meedu: ^3.0.0-prev.14
  • call AutoDispose after route dismiss animation.

3.0.0-prev.20 #

  • Added dispose method in router module.

3.0.0-prev.19 #

  • Updated to meedu: ^3.0.0-prev.13

3.0.0-prev.18 #

  • Updated to meedu: ^3.0.0-prev.11

3.0.0-prev.17 #

  • Removed Logs on Consumer widget.

3.0.0-prev.16 #

  • ProviderListener onChange callback is called after next frame.

3.0.0-prev.15 #

  • Fixed routeName on NavigatorObserver.

3.0.0-prev.14 #

  • Fixed Provider widget.

3.0.0-prev.13 #

  • Added WatchFilter class.

3.0.0-prev.12 #

  • Added buildWhen, buildByIds and buildBySelect in the watch method of ConsumerWidget.

3.0.0-prev.11 #

  • fixed router.arguments.

3.0.0-prev.10 #

  • Fixed autoDispose in pushAndRemoveUntil usinf didRemove.

3.0.0-prev.9 #

  • Fixed autoDispose in pushAndRemoveUntil.

3.0.0-prev.8 #

  • fixed autoDispose for multiples providers.

3.0.0-prev.7 #

  • fixed autoDispose when navigate using Navigator.push(...).

3.0.0-prev.6 #

  • meedu: ^3.0.0-prev.5

3.0.0-prev.5 #

  • meedu: ^3.0.0-prev.4

3.0.0-prev.4 #

  • meedu: ^3.0.0-prev.3

3.0.0-prev.3 #

  • meedu: ^3.0.0-prev.2

3.0.0-prev.2 #

  • Fixed read method into ProviderReference.

3.0.0-prev.1 #

  • Added events to ProviderListener.

3.0.0-prev.0 #

  • Prev version of 3.0.0

2.1.1 #

  • Fixed router navigator key.

2.1.0-prev.1 #

  • Updated export file.

2.1.0-prev.0 #

  • Updated meedu: ^2.1.0

2.0.1 #

  • Updated meedu: ^2.0.1

2.0.0 #

  • Added support for flutter 2 and null safety.

1.1.2 #

  • Fixed push with Generic types.

1.1.1 #

  • Updated meedu: ^0.5.4.

1.1.0 #

  • Added tag support for Provider.of<...>(...)

1.0.5 #

  • Removed unused imports.

1.0.4 #

  • Fixed route.arguments in ProviderPage.

1.0.3+2 #

  • Updated meedu version.

1.0.3+1 #

  • Added documentation url.

1.0.3 #

  • Added ProviderPage.

1.0.2 #

  • Added SimpleWidget and StateWidget.

1.0.1 #

  • Added screen utils.

1.0.0 #

  • initial version.
137
likes
0
points
812
downloads

Publisher

verified publishermeedu.app

Weekly Downloads

A simple State Managment, Dependency Injection, Reactive programming and Navigation for Flutter apps.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (license)

Dependencies

flutter, meedu

More

Packages that depend on flutter_meedu