mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-10-18 11:33:20 +00:00
22 lines
398 B
Dart
22 lines
398 B
Dart
![]() |
import 'home_screen.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
void main() {
|
||
|
runApp(MyApp());
|
||
|
}
|
||
|
|
||
|
class MyApp extends StatefulWidget {
|
||
|
@override
|
||
|
_MyAppState createState() => _MyAppState();
|
||
|
}
|
||
|
|
||
|
class _MyAppState extends State<MyApp> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return MaterialApp(
|
||
|
debugShowCheckedModeBanner: false,
|
||
|
home: HomeScreen(),
|
||
|
);
|
||
|
}
|
||
|
}
|