astronote/lib/main.dart

18 lines
345 B
Dart
Raw Normal View History

2020-07-12 23:56:06 +02:00
import 'package:flutter/material.dart';
import 'views/HomeLog.dart';
2020-07-12 23:56:06 +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(
home: HomeLog(),
debugShowCheckedModeBanner: false,
2020-07-12 23:56:06 +02:00
);
}
}