2020-07-12 23:56:06 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2020-07-22 00:56:56 +02:00
|
|
|
import 'views/HomeLog.dart';
|
2020-07-12 23:56:06 +02:00
|
|
|
|
2020-07-22 00:56:56 +02:00
|
|
|
void main() => runApp(MyApp());
|
2020-07-12 23:56:06 +02:00
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
// This widget is the root of your application.
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
2020-07-22 00:56:56 +02:00
|
|
|
home: HomeLog(),
|
|
|
|
debugShowCheckedModeBanner: false,
|
2020-07-12 23:56:06 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|