flutter_thrio 3.7.2
flutter_thrio: ^3.7.2 copied to clipboard
Thrio makes it easy and fast to add flutter to existing mobile applications, and provide a simple and consistent navigator APIs.
example/lib/main.dart
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_thrio/flutter_thrio.dart';
import 'src/app.dart' as app;
Future<void> main() async {
ThrioLogger.v('main');
FlutterError.onError = (final details) async {
Zone.current.handleUncaughtError(
details.exception,
details.stack ?? StackTrace.empty,
);
};
runZoned<void>(app.main);
}
@pragma('vm:entry-point')
Future<void> biz1() async {
FlutterError.onError = (final details) async {
Zone.current.handleUncaughtError(
details.exception,
details.stack ?? StackTrace.empty,
);
};
runZoned<void>(app.biz1);
}
@pragma('vm:entry-point')
Future<void> biz2() async {
FlutterError.onError = (final details) async {
Zone.current.handleUncaughtError(
details.exception,
details.stack ?? StackTrace.empty,
);
};
runZoned<void>(app.biz2);
}