main.dart 519 B

12345678910111213141516171819202122
  1. import 'package:flowy_infra_ui/flowy_infra_ui.dart';
  2. import 'package:flowy_infra_ui/flowy_infra_ui_web.dart';
  3. import 'package:flutter/material.dart';
  4. import 'home/home_screen.dart';
  5. void main() {
  6. runApp(const ExampleApp());
  7. }
  8. class ExampleApp extends StatelessWidget {
  9. const ExampleApp({Key? key}) : super(key: key);
  10. @override
  11. Widget build(BuildContext context) {
  12. return MaterialApp(
  13. builder: overlayManagerBuilder(),
  14. title: "Flowy Infra Title",
  15. home: const HomeScreen(),
  16. );
  17. }
  18. }