12345678910111213141516171819202122 |
- import 'package:example/home/home_screen.dart';
- import 'package:flutter/material.dart';
- void main() {
- runApp(const ExampleApp());
- }
- class ExampleApp extends StatelessWidget {
- const ExampleApp({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- <<<<<<< HEAD
- return const MaterialApp();
- =======
- return const MaterialApp(
- title: "Flowy Infra Title",
- home: HomeScreen(),
- );
- >>>>>>> [infra_ui][keyboard] (WIP) Add demo proj for infra ui
- }
- }
|