Calendar widget: fix pinned events padding
This commit is contained in:
parent
494127d7cc
commit
553ab2d9c2
@ -230,6 +230,11 @@ fun CalendarWidget(
|
|||||||
|
|
||||||
val pinnedEvents by viewModel.pinnedCalendarEvents.collectAsState()
|
val pinnedEvents by viewModel.pinnedCalendarEvents.collectAsState()
|
||||||
if (pinnedEvents.isNotEmpty()) {
|
if (pinnedEvents.isNotEmpty()) {
|
||||||
|
Column(
|
||||||
|
modifier = Modifier
|
||||||
|
.padding(horizontal = 12.dp)
|
||||||
|
.padding(bottom = 12.dp)
|
||||||
|
) {
|
||||||
Text(
|
Text(
|
||||||
stringResource(R.string.calendar_widget_pinned_events),
|
stringResource(R.string.calendar_widget_pinned_events),
|
||||||
modifier = Modifier.padding(
|
modifier = Modifier.padding(
|
||||||
@ -248,6 +253,7 @@ fun CalendarWidget(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user