mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
- Refactored and updated pages, router, DI modules, and feature implementations in both example projects: - client_app: main.dart and my_home_page.dart updated for improved navigation and structure. - postly: updated DI wiring, presentation pages, repository implementation, and routing logic. - Applied small improvements and code consistency changes in the examples. docs: add new documentation assets and benchmarking script BREAKING CHANGE: Examples now reflect the latest changes in the DI framework and are ready for Dart 3.8+ and cherrypick_generator element2 API compatibility.
33 lines
1.1 KiB
Dart
33 lines
1.1 KiB
Dart
import 'package:cherrypick/cherrypick.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:postly/app.dart';
|
|
import 'package:postly/di/core_module.dart';
|
|
import 'package:talker_bloc_logger/talker_bloc_logger_observer.dart';
|
|
import 'package:talker_flutter/talker_flutter.dart';
|
|
import 'di/app_module.dart';
|
|
import 'package:talker_cherrypick_logger/talker_cherrypick_logger.dart';
|
|
|
|
void main() {
|
|
final talker = Talker();
|
|
final talkerLogger = TalkerCherryPickObserver(talker);
|
|
|
|
Bloc.observer = TalkerBlocObserver(talker: talker);
|
|
|
|
CherryPick.setGlobalObserver(talkerLogger);
|
|
// Включаем cycle-detection только в debug/test
|
|
if (kDebugMode) {
|
|
CherryPick.enableGlobalCycleDetection();
|
|
CherryPick.enableGlobalCrossScopeCycleDetection();
|
|
}
|
|
|
|
// Используем safe root scope для гарантии защиты
|
|
CherryPick.openRootScope().installModules([
|
|
CoreModule(talker: talker),
|
|
$AppModule(),
|
|
]);
|
|
|
|
runApp(MyApp(talker: talker));
|
|
}
|