mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 00:12:09 +03:00
Hide layout buttons on focus
This commit is contained in:
parent
ac35861370
commit
b4b4e77b08
@ -443,7 +443,8 @@ class _UnlockedViewState extends ConsumerState<_UnlockedView> {
|
||||
setState(() {});
|
||||
},
|
||||
),
|
||||
if (searchController.text.isEmpty) ...[
|
||||
if (searchController.text.isEmpty &&
|
||||
!searchFocus.hasFocus) ...[
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
@ -456,7 +457,7 @@ class _UnlockedViewState extends ConsumerState<_UnlockedView> {
|
||||
color:
|
||||
Theme.of(context).colorScheme.background,
|
||||
width: 1,
|
||||
height: 40,
|
||||
height: 45,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user