Hey all, trying out flutter_flux in a project, but can't seem to get the correct flutter_flux source pulled down. I have defined flutter_flux: 4.0.1 in my pubspec.yaml, but when I look at the Dart Packages in Android Studio the code is not correct when compared to the GitHub repo for flutter_flux 4.0.1. For example, here is a the StoreWatcherMixin signature from my local machine: abstract class StoreWatcherMixin implements State<dynamic> and here is the same on GitHub: abstract class StoreWatcherMixin<T extends StatefulWidget> implements State<T>. I have tried re-installing everything, clearing the cache, cleaning the project... I am out of idea. Any thoughts?
Hey all, trying out flutter_flux in a project, but can't seem to get the correct flutter_flux source pulled down. I have defined
flutter_flux: 4.0.1
in my pubspec.yaml, but when I look at the Dart Packages in Android Studio the code is not correct when compared to the GitHub repo for flutter_flux 4.0.1. For example, here is a theStoreWatcherMixin
signature from my local machine:abstract class StoreWatcherMixin implements State<dynamic>
and here is the same on GitHub:abstract class StoreWatcherMixin<T extends StatefulWidget> implements State<T>
. I have tried re-installing everything, clearing the cache, cleaning the project... I am out of idea. Any thoughts?