fix: kinda fixed a visual bug
This commit is contained in:
parent
3fc0f8df16
commit
72fd0b66a9
1 changed files with 30 additions and 25 deletions
|
|
@ -42,7 +42,11 @@ class _OwnerPopupState extends State<OwnerPopup> {
|
||||||
SizedBox(height: 5),
|
SizedBox(height: 5),
|
||||||
(showNewOwner || widget.viewModel.owners!.isEmpty)
|
(showNewOwner || widget.viewModel.owners!.isEmpty)
|
||||||
? SizedBox()
|
? SizedBox()
|
||||||
: DropdownMenu<Owner>(
|
: SingleChildScrollView(
|
||||||
|
padding: EdgeInsets.only(
|
||||||
|
bottom: MediaQuery.of(context).viewInsets.bottom,
|
||||||
|
),
|
||||||
|
child: DropdownMenu<Owner>(
|
||||||
enableFilter: true,
|
enableFilter: true,
|
||||||
controller: searchController,
|
controller: searchController,
|
||||||
label: Text("Rechercher un·e propriétaire"),
|
label: Text("Rechercher un·e propriétaire"),
|
||||||
|
|
@ -69,6 +73,7 @@ class _OwnerPopupState extends State<OwnerPopup> {
|
||||||
},
|
},
|
||||||
enableSearch: true,
|
enableSearch: true,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
(!showNewOwner)
|
(!showNewOwner)
|
||||||
? SizedBox()
|
? SizedBox()
|
||||||
: Form(
|
: Form(
|
||||||
|
|
|
||||||
Reference in a new issue