build method

  1. @override
Widget build(
  1. BuildContext context
)
override

This widget is the root of your application

Implementation

@override
Widget build(BuildContext context) {
  final store = AFibF.g.internalOnlyActiveStore;
  return StoreProvider(
    store: store,
    child: OverlaySupport(
      child: _buildMaterialApp(context)
    )
  );
}