Calendar widget: fix pinned events padding
This commit is contained in:
parent
494127d7cc
commit
553ab2d9c2
@ -230,21 +230,27 @@ fun CalendarWidget(
|
|||||||
|
|
||||||
val pinnedEvents by viewModel.pinnedCalendarEvents.collectAsState()
|
val pinnedEvents by viewModel.pinnedCalendarEvents.collectAsState()
|
||||||
if (pinnedEvents.isNotEmpty()) {
|
if (pinnedEvents.isNotEmpty()) {
|
||||||
Text(
|
Column(
|
||||||
stringResource(R.string.calendar_widget_pinned_events),
|
|
||||||
modifier = Modifier.padding(
|
|
||||||
start = 4.dp,
|
|
||||||
end = 4.dp,
|
|
||||||
top = 8.dp,
|
|
||||||
bottom = 4.dp
|
|
||||||
),
|
|
||||||
style = MaterialTheme.typography.titleMedium
|
|
||||||
)
|
|
||||||
SearchResultList(
|
|
||||||
pinnedEvents,
|
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.padding(horizontal = 12.dp)
|
||||||
)
|
.padding(bottom = 12.dp)
|
||||||
|
) {
|
||||||
|
Text(
|
||||||
|
stringResource(R.string.calendar_widget_pinned_events),
|
||||||
|
modifier = Modifier.padding(
|
||||||
|
start = 4.dp,
|
||||||
|
end = 4.dp,
|
||||||
|
top = 8.dp,
|
||||||
|
bottom = 4.dp
|
||||||
|
),
|
||||||
|
style = MaterialTheme.typography.titleMedium
|
||||||
|
)
|
||||||
|
SearchResultList(
|
||||||
|
pinnedEvents,
|
||||||
|
modifier = Modifier
|
||||||
|
.fillMaxWidth()
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user