Chris Fillmore
11/30/2021, 11:09 PMHalfExpanded
or Expanded
state? In particular, what I observe is that when the bottom sheet content is more than 50% of the screen height, and the bottom sheet is HalfExpanded
, then the element is positioned below the bottom of the screen (not visible). If I drag it to Expanded
state, then the positioned element becomes visible. For example:
// I'm using bottom sheet navigation
bottomSheet(...) {
Box {
Column {
// Some content here
}
Row(
// Alignment from BoxScope
modifier = Modifier.align(Alignment.BottomCenter)
) {
// I have some buttons I want to put here that will remain at the bottom of the screen while the bottom sheet is open
}
}
}