Version 0.9.2
0.9.2 Change from using Notifier
instead of StateNotifier
Oct 28, 2022
This version bump is an internal change to using Notifier
instead of StateNotifier
when possible. It also moves the counter StateProvider
to NotifierProvider
to make its code more expressive. Application functionality remains unchanged. This change uses the new Riverpod 2 Notifier
and NotifierProvider
.
- Counter demo got a
Counter
model class that extendsNotifier
and it got anincrement
method. Its provider was changed StateProvider, to aNotifierProvider
. - Changed
SettingsEntry
from extendingStateNotifier
to simplerNotifier
class. - Changed all
Settings
providers fromStateNotifierProvider
toNotifierProvider
.