fixed warnings

This commit is contained in:
Sergey Penkovsky
2025-05-16 17:57:40 +03:00
parent 7740717fce
commit 0c5db63961
4 changed files with 17 additions and 12 deletions

View File

@@ -26,7 +26,7 @@ class MyApp extends StatelessWidget {
return MaterialApp(
title: 'Example App',
theme: ThemeData(primarySwatch: Colors.blue),
home: MyHomePage(),
home: const MyHomePage(),
);
}
}