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'), ); } }