location picker and ui fixes
All checks were successful
Build and release APK / Build APK (pull_request) Successful in 5m25s

This commit is contained in:
2024-08-09 00:48:45 +02:00
parent bea3a65fec
commit 311b1c2218
18 changed files with 588 additions and 395 deletions

View File

@@ -4,6 +4,8 @@ import 'package:anyway/layout.dart';
void main() => runApp(const App());
final GlobalKey<ScaffoldMessengerState> rootScaffoldMessengerKey = GlobalKey<ScaffoldMessengerState>();
class App extends StatelessWidget {
const App({super.key});
@@ -14,6 +16,7 @@ class App extends StatelessWidget {
title: APP_NAME,
home: BasePage(mainScreen: "map"),
theme: ThemeData(useMaterial3: true, colorSchemeSeed: Colors.red[600]),
scaffoldMessengerKey: rootScaffoldMessengerKey
);
}
}