mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-08 03:54:28 +08:00
19 lines
323 B
Dart
19 lines
323 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:image_editor/HomePage.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
home: HomePage()
|
|
);
|
|
}
|
|
}
|
|
|
|
|