mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix(App Selector): Unable to select APK from storage when asked to (#1513)
This commit is contained in:
parent
4e9f3fe1dc
commit
78978276c4
1 changed files with 4 additions and 4 deletions
|
@ -197,7 +197,7 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||
Future showSelectFromStorageDialog(BuildContext context) async {
|
||||
return showDialog(
|
||||
context: context,
|
||||
builder: (context) => SimpleDialog(
|
||||
builder: (innerContext) => SimpleDialog(
|
||||
alignment: Alignment.center,
|
||||
contentPadding:
|
||||
const EdgeInsets.symmetric(horizontal: 20, vertical: 20),
|
||||
|
@ -206,7 +206,7 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||
Icon(
|
||||
Icons.block,
|
||||
size: 28,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
color: Theme.of(innerContext).colorScheme.primary,
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
I18nText(
|
||||
|
@ -234,7 +234,7 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||
const SizedBox(height: 30),
|
||||
CustomMaterialButton(
|
||||
onPressed: () async {
|
||||
Navigator.pop(context);
|
||||
Navigator.pop(innerContext);
|
||||
await selectAppFromStorage(context);
|
||||
},
|
||||
label: Row(
|
||||
|
@ -250,7 +250,7 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||
CustomMaterialButton(
|
||||
isFilled: false,
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
Navigator.pop(innerContext);
|
||||
},
|
||||
label: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
|
|
Loading…
Reference in a new issue