main.dart 455 Bytes
Newer Older
1
import 'package:flutter/material.dart';
2 3

import 'home_page.dart';
4 5 6 7 8 9 10

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);
11

12 13 14 15 16 17 18 19 20 21 22
  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
23 24
  Widget build(BuildContext _) {
    return const MaterialApp(home: HomePage());
25 26
  }
}