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 4526221 commit 145e571Copy full SHA for 145e571
packages/app_center/lib/error/error_view.dart
@@ -42,6 +42,10 @@ class ErrorView extends StatelessWidget {
42
),
43
Flexible(child: Text(message.body(l10n))),
44
const SizedBox(height: kPagePadding),
45
+ if (message.actions.isNotEmpty) ...[
46
+ Flexible(child: Text(message.actionLabel(l10n))),
47
+ const SizedBox(height: kPagePadding),
48
+ ],
49
Row(
50
children: [
51
if (message.actions.contains(ErrorAction.retry))
0 commit comments