diff --git a/lib/chess/chess_app.dart b/lib/chess/chess_app.dart index 30f555b..a6866aa 100644 --- a/lib/chess/chess_app.dart +++ b/lib/chess/chess_app.dart @@ -17,19 +17,21 @@ class ChessApp extends StatelessWidget { create: (_) => ConnectionCubit.getInstance(), ), BlocProvider( - create: (context) => ChessBloc.getInstance(), + create: (_) => ChessBloc.getInstance(), ), BlocProvider( - create: (context) => PromotionBloc.getInstance(), + create: (_) => PromotionBloc.getInstance(), + ), + BlocProvider( + create: (_) => TapBloc.getInstance(), ), - BlocProvider(create: (context) => TapBloc.getInstance()), ], child: MaterialApp.router( theme: ThemeData.dark( useMaterial3: true, ), routerConfig: ChessAppRouter.getInstance().router, - title: 'mChess 0.9.14', + title: 'mChess 0.9.115', ), ); }