Add main screen template

This commit is contained in:
Anton Tananaev 2025-05-05 07:47:09 -07:00
parent 50f745f043
commit 8a1c5199cc
6 changed files with 397 additions and 7 deletions

View file

@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:traccar_client/main_screen.dart';
void main() {
runApp(const MainApp());
@ -10,11 +11,7 @@ class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('Hello World!'),
),
),
home: MainScreen(),
);
}
}