From a559a6fcc23cd86ec074085f0a22d30f38462f24 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 9 Jan 2024 19:08:43 +0100 Subject: [PATCH] Update version --- lib/chess/chess_app.dart | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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', ), ); }