mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-13 02:14:31 +01:00
fix: Show "Share log" menu option even if patching has errors
This commit is contained in:
parent
d84230fa22
commit
e0c46e4268
1 changed files with 9 additions and 8 deletions
|
@ -32,10 +32,11 @@ class InstallerView extends StatelessWidget {
|
|||
onBackButtonPressed: () => model.onWillPop(context),
|
||||
actions: <Widget>[
|
||||
Visibility(
|
||||
visible: !model.isPatching && !model.hasErrors,
|
||||
visible: !model.isPatching,
|
||||
child: CustomPopupMenu(
|
||||
onSelected: (value) => model.onMenuSelection(value),
|
||||
children: {
|
||||
if (!model.hasErrors)
|
||||
0: I18nText(
|
||||
'installerView.shareApkMenuOption',
|
||||
child: const Text(
|
||||
|
|
Loading…
Reference in a new issue