fix: Show "Share log" menu option even if patching has errors

This commit is contained in:
Alberto Ponces 2022-09-23 17:22:39 +01:00
parent d84230fa22
commit e0c46e4268
1 changed files with 9 additions and 8 deletions

View File

@ -32,19 +32,20 @@ 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: {
0: I18nText(
'installerView.shareApkMenuOption',
child: const Text(
'',
style: TextStyle(
fontWeight: FontWeight.bold,
if (!model.hasErrors)
0: I18nText(
'installerView.shareApkMenuOption',
child: const Text(
'',
style: TextStyle(
fontWeight: FontWeight.bold,
),
),
),
),
1: I18nText(
'installerView.shareLogMenuOption',
child: const Text(