import 'package:flutter/material.dart'; extension LKExampleExt on BuildContext { // Future showErrorDialog(dynamic exception) => showDialog( context: this, builder: (ctx) => AlertDialog( title: const Text('Error'), content: Text(exception.toString()), actions: [ TextButton( onPressed: () => Navigator.pop(ctx), child: const Text('OK'), ) ], ), ); }