make mobile ab dropdown button text vertical center (#8376)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
parent
8d6de9ca59
commit
e2a6d66805
1 changed files with 3 additions and 1 deletions
|
|
@ -110,6 +110,7 @@ class _AddressBookState extends State<AddressBook> {
|
|||
}
|
||||
|
||||
Widget _buildAddressBookMobile() {
|
||||
const padding = 8.0;
|
||||
return Column(
|
||||
children: [
|
||||
Offstage(
|
||||
|
|
@ -120,7 +121,8 @@ class _AddressBookState extends State<AddressBook> {
|
|||
border: Border.all(
|
||||
color: Theme.of(context).colorScheme.background)),
|
||||
child: Container(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
padding:
|
||||
const EdgeInsets.fromLTRB(padding, 0, padding, padding),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue