Finish main screen

This commit is contained in:
Anton Tananaev 2025-05-07 22:06:29 -07:00
parent 81e9b01b6a
commit 828d664166
4 changed files with 131 additions and 126 deletions

View file

@ -15,9 +15,14 @@ class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
return MaterialApp(
localizationsDelegates: AppLocalizations.localizationsDelegates,
supportedLocales: AppLocalizations.supportedLocales,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.green,
),
),
home: MainScreen(),
);
}