Learning more about the Provider
and ChangeNotifier
architecture, I find it really similar to the old good MVVM architecture, where a Widget
is the View and gets notified for changes by the ViewModel
, which is the ChangeNotifier
, linked by a Consumer
and a Provider
.
Why isn't this called MVVM for Flutter then? Are there any actual differences between those two architectures?