mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-29 21:44:26 +02:00
fix: Unable to scroll in the removed patches dialog (#2113)
This commit is contained in:
parent
400df69528
commit
295c5a74ea
@ -55,9 +55,11 @@ 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(
|
||||||
t.patcherView.removedPatchesWarningDialogText(
|
child: Text(
|
||||||
patches: removedPatches.join('\n'),
|
t.patcherView.removedPatchesWarningDialogText(
|
||||||
|
patches: removedPatches.join('\n'),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
actions: <Widget>[
|
actions: <Widget>[
|
||||||
|
Loading…
x
Reference in New Issue
Block a user