rich_editor/example/lib/main.dart

23 lines
450 B
Dart
Raw Normal View History

2021-05-30 04:36:44 +07:00
2021-06-03 18:03:20 +07:00
import 'package:example/basic.dart';
2021-05-27 05:42:34 +07:00
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
2021-06-03 18:03:20 +07:00
home: BasicDemo(),
// home: CustomToolbarDemo(),
2021-05-27 05:42:34 +07:00
);
}
}