Add main screen template
This commit is contained in:
parent
50f745f043
commit
8a1c5199cc
6 changed files with 397 additions and 7 deletions
|
|
@ -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(),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue