mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Unable to scroll in the removed patches dialog (#2113)
This commit is contained in:
parent
400df69528
commit
295c5a74ea
1 changed files with 5 additions and 3 deletions
|
@ -55,11 +55,13 @@ class PatcherViewModel extends BaseViewModel {
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
title: Text(t.notice),
|
title: Text(t.notice),
|
||||||
content: Text(
|
content: SingleChildScrollView(
|
||||||
|
child: Text(
|
||||||
t.patcherView.removedPatchesWarningDialogText(
|
t.patcherView.removedPatchesWarningDialogText(
|
||||||
patches: removedPatches.join('\n'),
|
patches: removedPatches.join('\n'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
actions: <Widget>[
|
actions: <Widget>[
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
|
|
Loading…
Reference in a new issue