2025-05-04 17:47:47 -07:00
|
|
|
import 'package:flutter/material.dart';
|
2025-05-05 07:47:09 -07:00
|
|
|
import 'package:traccar_client/main_screen.dart';
|
2025-05-04 17:47:47 -07:00
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
|
runApp(const MainApp());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class MainApp extends StatelessWidget {
|
|
|
|
|
const MainApp({super.key});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return const MaterialApp(
|
2025-05-05 07:47:09 -07:00
|
|
|
home: MainScreen(),
|
2025-05-04 17:47:47 -07:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|