aboutsummaryrefslogtreecommitdiffstats
path: root/lib/main.dart
blob: a7a0a29901c670bb7c6a7c525818c50b1c16f364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import 'package:device_preview/device_preview.dart';

import 'export.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(DevicePreview(
    enabled: true,
    tools: const [
      ...DevicePreview.defaultTools,
    ],
    builder: (context) => const App(),
  ));
}