astronote/lib/main.dart

18 lines
345 B
Dart

import 'package:flutter/material.dart';
import 'views/HomeLog.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HomeLog(),
debugShowCheckedModeBanner: false,
);
}
}