anyway/frontend/lib/main.dart
Remy Moll db41528702
Some checks failed
Build and push docker image / Build (pull_request) Failing after 3m5s
Build and release APK / Build APK (pull_request) Successful in 7m24s
Build web / Build Web (pull_request) Successful in 3m36s
functional datastructure. Needs to be able to write to storage as well
2024-06-21 19:30:40 +02:00

20 lines
461 B
Dart

import 'package:flutter/material.dart';
import 'package:fast_network_navigation/layout.dart';
void main() => runApp(const App());
class App extends StatelessWidget {
const App({super.key});
static const appTitle = 'City Nav';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: appTitle,
home: BasePage(mainScreen: "map"),
theme: ThemeData(useMaterial3: true, colorSchemeSeed: Colors.green),
);
}
}