Tweak list item style

This commit is contained in:
Ming Ming 2021-07-05 17:35:30 +08:00
parent 77355eab20
commit 500ec4ab43

View file

@ -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),
);
}
}