Step 1: Registering the provider
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Vuex4FlutterProvider(
store: MyStore(),
child: MaterialApp(
home: Home(),
);
);
}
}Last updated
Was this helpful?