mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-13 04:56:21 +01:00
Tweak album picker style
This commit is contained in:
parent
8ceac22deb
commit
5680e52eb4
1 changed files with 3 additions and 0 deletions
|
@ -92,10 +92,13 @@ class _AlbumPickerDialogState extends State<AlbumPickerDialog> {
|
||||||
return Visibility(
|
return Visibility(
|
||||||
visible: _isVisible,
|
visible: _isVisible,
|
||||||
child: SimpleDialog(
|
child: SimpleDialog(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(vertical: 8),
|
||||||
children: _items
|
children: _items
|
||||||
.map((e) => SimpleDialogOption(
|
.map((e) => SimpleDialogOption(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||||
onPressed: () => _onItemPressed(context, e),
|
onPressed: () => _onItemPressed(context, e),
|
||||||
child: ListTile(
|
child: ListTile(
|
||||||
|
dense: true,
|
||||||
title: Text("${e.name}"),
|
title: Text("${e.name}"),
|
||||||
),
|
),
|
||||||
))
|
))
|
||||||
|
|
Loading…
Reference in a new issue