Files
cherrypick/examples/postly/lib/main.dart

12 lines
281 B
Dart
Raw Normal View History

2025-05-16 18:09:14 +03:00
import 'package:cherrypick/cherrypick.dart';
2025-05-16 17:56:57 +03:00
import 'package:flutter/material.dart';
2025-05-23 12:21:23 +03:00
import 'package:postly/app.dart';
2025-05-16 18:09:14 +03:00
import 'di/app_module.dart';
2025-05-16 17:56:57 +03:00
void main() {
2025-05-16 18:09:14 +03:00
final scope = CherryPick.openRootScope();
2025-05-17 00:34:56 +03:00
scope.installModules([$AppModule()]);
2025-05-16 17:56:57 +03:00
2025-05-16 18:09:14 +03:00
runApp(MyApp(scope: scope));
2025-05-16 17:56:57 +03:00
}