We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d898b06 commit 50aa966Copy full SHA for 50aa966
lib/main.dart
@@ -24,6 +24,12 @@ import 'common/utils/navigator_utils.dart';
24
25
void main() {
26
runZoned(() {
27
+ ErrorWidget.builder = (FlutterErrorDetails details) {
28
+ Zone.current.handleUncaughtError(details.exception, details.stack);
29
+ return Container(
30
+ color: Colors.transparent
31
+ );
32
+ };
33
runApp(FlutterReduxApp());
34
PaintingBinding.instance.imageCache.maximumSize = 100;
35
Provider.debugCheckInvalidValueType = null;
0 commit comments