mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-10-01 19:38:19 +00:00
15 lines
265 B
Dart
15 lines
265 B
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) {
|
|
return MaterialApp();
|
|
}
|
|
}
|