mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-24 18:38:48 +01:00
Tweak list item style
This commit is contained in:
parent
77355eab20
commit
500ec4ab43
1 changed files with 5 additions and 1 deletions
|
@ -181,7 +181,11 @@ mixin SelectableItemStreamListMixin<T extends StatefulWidget>
|
|||
child: item.buildWidget(context),
|
||||
);
|
||||
} else {
|
||||
return item.buildWidget(context);
|
||||
// add padding to align with selectable items
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(2),
|
||||
child: item.buildWidget(context),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue