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 de4950f commit df5e2caCopy full SHA for df5e2ca
lib/helpers/ui.dart
@@ -35,8 +35,9 @@ void showErrorDialog(dynamic exception, BuildContext context) {
35
showDialog(
36
context: context,
37
builder: (ctx) => AlertDialog(
38
+ scrollable: true,
39
title: Text(AppLocalizations.of(context).anErrorOccurred),
- content: Text(exception.toString()),
40
+ content: SelectableText(exception.toString()),
41
actions: [
42
TextButton(
43
child: Text(MaterialLocalizations.of(context).closeButtonLabel),
0 commit comments