summaryrefslogtreecommitdiffstats
path: root/lib/main.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/main.dart')
-rw-r--r--lib/main.dart15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/main.dart b/lib/main.dart
new file mode 100644
index 0000000..ec5a5d0
--- /dev/null
+++ b/lib/main.dart
@@ -0,0 +1,15 @@
+import 'package:device_preview/device_preview.dart';
+
+import 'export.dart';
+
+void main() async {
+ WidgetsFlutterBinding.ensureInitialized();
+ // MediaKit.ensureInitialized(); //replace with lottie
+ runApp(DevicePreview(
+ enabled: false, // Chnage to false to disable device preview
+ tools: const [
+ ...DevicePreview.defaultTools,
+ ],
+ builder: (context) => const App(),
+ ));
+}