mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-25 02:48:54 +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),
|
child: item.buildWidget(context),
|
||||||
);
|
);
|
||||||
} else {
|
} 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