alorma
06/08/2021, 2:41 PMalorma
06/08/2021, 2:42 PMColumn {
LazyColumn(
modifier = Modifier
.fillMaxWidth(),
) {
stickyHeader {
Header(onClose)
}
// items....
}
Spacer(modifier = Modifier.weight(1f))
TextButton()
}
Akram Bensalem
06/08/2021, 2:48 PMalorma
06/08/2021, 2:51 PMHow did you make the Corner of the bottomsheet rounded ?!Set the large shape on theme as:
RoundedCornerShape(
topStart = 16.dp,
topEnd = 16.dp,
)
And how you make the background with dark colorIt goes by default with
ModalBottomSheetLayout
Akram Bensalem
06/08/2021, 2:53 PM