Use equal spacing for tag chips and app profile chips
This commit is contained in:
parent
79be655949
commit
6d9ce31c2c
@ -119,7 +119,7 @@ fun SearchColumn(
|
|||||||
)
|
)
|
||||||
for (tag in pinnedTags) {
|
for (tag in pinnedTags) {
|
||||||
FilterChip(
|
FilterChip(
|
||||||
modifier = Modifier.padding(start = 12.dp),
|
modifier = Modifier.padding(start = 8.dp),
|
||||||
selected = selectedTag == tag.tag,
|
selected = selectedTag == tag.tag,
|
||||||
onClick = { favoritesVM.selectTag(tag.tag) },
|
onClick = { favoritesVM.selectTag(tag.tag) },
|
||||||
leadingIcon = {
|
leadingIcon = {
|
||||||
|
|||||||
@ -58,7 +58,7 @@ fun FavoritesWidget() {
|
|||||||
)
|
)
|
||||||
for (tag in pinnedTags) {
|
for (tag in pinnedTags) {
|
||||||
FilterChip(
|
FilterChip(
|
||||||
modifier = Modifier.padding(start = 12.dp),
|
modifier = Modifier.padding(start = 8.dp),
|
||||||
selected = selectedTag == tag.tag,
|
selected = selectedTag == tag.tag,
|
||||||
onClick = { viewModel.selectTag(tag.tag) },
|
onClick = { viewModel.selectTag(tag.tag) },
|
||||||
leadingIcon = {
|
leadingIcon = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user