mirror of
https://github.com/supanadit/geo-smart-app.git
synced 2024-11-10 01:52:22 +00:00
18 lines
366 B
Dart
18 lines
366 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:geo_app/page/startup.dart';
|
|
|
|
void main() => runApp(MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Geo Smart App',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
),
|
|
home: Startup(),
|
|
);
|
|
}
|
|
}
|