Always notify listeners of backend

The state object may stay the same while there where in fact changes to
it that require a notification.
This commit is contained in:
Elias Projahn 2020-03-28 09:52:42 +01:00
parent 87582f200d
commit bd844c44ea

View file

@ -89,5 +89,5 @@ class _InheritedBackend extends InheritedWidget {
}) : super(child: child);
@override
bool updateShouldNotify(_InheritedBackend old) => state != old.state;
bool updateShouldNotify(_InheritedBackend old) => true;
}