Skip to content

Instantly share code, notes, and snippets.

View wouterhardeman's full-sized avatar

Wouter Hardeman wouterhardeman

  • The Netherlands
View GitHub Profile
@wouterhardeman
wouterhardeman / main.dart
Created December 4, 2018 19:48
Custom error screen in Flutter
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
Widget getErrorWidget(FlutterErrorDetails error) {
return Center(
child: Text("Error appeared."),
);
}