Files
cherrypick/examples/postly/lib/main.dart
2025-05-23 12:21:23 +03:00

12 lines
281 B
Dart

import 'package:cherrypick/cherrypick.dart';
import 'package:flutter/material.dart';
import 'package:postly/app.dart';
import 'di/app_module.dart';
void main() {
final scope = CherryPick.openRootScope();
scope.installModules([$AppModule()]);
runApp(MyApp(scope: scope));
}