You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flutter'ı upgrade ettikden sonra böyle bir hata aldım.
hata: 'BaseViewModel.context' ('BuildContext? Function()') isn't a valid override of 'Store.context' ('ReactiveContext Function()').dartinvalid_override
The text was updated successfully, but these errors were encountered:
Selamlar @kasapiniz , bu şekilde context sorunu çözülür;
base_view_model.dart
abstract class BaseViewModel {
late BuildContext myContext;
void setContext(BuildContext context);
void init();
}
sample_view_model.dart
abstract class _SampleViewModelBase with Store, BaseViewModel { @OverRide
void setContext(BuildContext context) => this.myContext = context;
Flutter'ı upgrade ettikden sonra böyle bir hata aldım.
hata: 'BaseViewModel.context' ('BuildContext? Function()') isn't a valid override of 'Store.context' ('ReactiveContext Function()').dartinvalid_override
The text was updated successfully, but these errors were encountered: