fix(ux): quick wins from the usertest medium list
Some checks are pending
Security / Security check (push) Waiting to run
Some checks are pending
Security / Security check (push) Waiting to run
- audit type filter: 'Alle'/'All' capitalized like every other label - settings -> setup wizard: close Settings first (one modal layer), stronger wizard scrim - try-out setup profile discloses the upgrade path to a regulated profile - store maturity pills explain themselves on hover (experimental/ published/planned) Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
parent
ae97b88257
commit
eab58c0b68
8 changed files with 93 additions and 26 deletions
|
|
@ -604,7 +604,16 @@ class _FaiSettingsDialogState extends State<ChainSettingsDialog> {
|
|||
Align(
|
||||
alignment: Alignment.centerLeft,
|
||||
child: OutlinedButton.icon(
|
||||
onPressed: () => GuidedSetupDialog.show(context),
|
||||
onPressed: () {
|
||||
// One modal layer at a time: close Settings first so the
|
||||
// wizard doesn't float over a half-visible dialog with
|
||||
// stray text fragments around it (usertest finding).
|
||||
final nav = Navigator.of(context);
|
||||
nav.pop(false);
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
if (nav.context.mounted) GuidedSetupDialog.show(nav.context);
|
||||
});
|
||||
},
|
||||
icon: const Icon(Icons.auto_fix_high, size: 18),
|
||||
label: Text(l.settingsRunSetup),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue