main.dart 398 B

123456789101112131415161718192021
  1. import 'home_screen.dart';
  2. import 'package:flutter/material.dart';
  3. void main() {
  4. runApp(MyApp());
  5. }
  6. class MyApp extends StatefulWidget {
  7. @override
  8. _MyAppState createState() => _MyAppState();
  9. }
  10. class _MyAppState extends State<MyApp> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return MaterialApp(
  14. debugShowCheckedModeBanner: false,
  15. home: HomeScreen(),
  16. );
  17. }
  18. }