From 6fc46d632ba5648d43833456bb4045312b3bb885 Mon Sep 17 00:00:00 2001 From: Aunali321 Date: Tue, 11 Oct 2022 02:55:35 +0530 Subject: [PATCH] feat: make applied patches dialog scrollable. --- lib/ui/widgets/appInfoView/app_info_viewmodel.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ui/widgets/appInfoView/app_info_viewmodel.dart b/lib/ui/widgets/appInfoView/app_info_viewmodel.dart index ab95a049..a151eece 100644 --- a/lib/ui/widgets/appInfoView/app_info_viewmodel.dart +++ b/lib/ui/widgets/appInfoView/app_info_viewmodel.dart @@ -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: [ CustomMaterialButton( label: I18nText('okButton'),