mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +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(
|
||||
visible: _isVisible,
|
||||
child: SimpleDialog(
|
||||
contentPadding: const EdgeInsets.symmetric(vertical: 8),
|
||||
children: _items
|
||||
.map((e) => SimpleDialogOption(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 8),
|
||||
onPressed: () => _onItemPressed(context, e),
|
||||
child: ListTile(
|
||||
dense: true,
|
||||
title: Text("${e.name}"),
|
||||
),
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue