Skip to content

Commit

Permalink
feat: make applied patches dialog scrollable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aunali321 committed Oct 10, 2022
1 parent b2a3581 commit 6fc46d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ui/widgets/appInfoView/app_info_viewmodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ class AppInfoViewModel extends BaseViewModel {
builder: (context) => AlertDialog(
title: I18nText('appInfoView.appliedPatchesLabel'),
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
content: Text(getAppliedPatchesString(app.appliedPatches)),
content: SingleChildScrollView(
child: Text(getAppliedPatchesString(app.appliedPatches))),
actions: <Widget>[
CustomMaterialButton(
label: I18nText('okButton'),
Expand Down

0 comments on commit 6fc46d6

Please sign in to comment.