mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-11 13:46:17 +00:00
fix: Unable to scroll in the removed patches dialog (#2113)
This commit is contained in:
@@ -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>[
|
||||||
|
|||||||
Reference in New Issue
Block a user