eagletracker/lib/main.dart
2024-05-25 19:28:25 +02:00

25 lines
617 B
Dart

import 'package:flutter/material.dart';
import 'package:gps_map_flowpoint/deviceSelection.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'GPD Map Flowpoint',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const DeviceSelection(title: 'GPS Map Flowpoint'),
);
}
}