fix: Unable to scroll in the removed patches dialog (#2113)

This commit is contained in:
aAbed 2024-08-06 06:31:01 +05:45 committed by GitHub
parent 400df69528
commit 295c5a74ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,9 +55,11 @@ class PatcherViewModel extends BaseViewModel {
context: context,
builder: (context) => AlertDialog(
title: Text(t.notice),
content: Text(
t.patcherView.removedPatchesWarningDialogText(
patches: removedPatches.join('\n'),
content: SingleChildScrollView(
child: Text(
t.patcherView.removedPatchesWarningDialogText(
patches: removedPatches.join('\n'),
),
),
),
actions: <Widget>[