Rihards
01/30/2023, 7:42 AMBottomSheetDialogFragment
together with scrollable column, but I’m experiencing the same issue that is mentioned here. For that reason I’m implementing a workaround to detect vertical drag gestures for top handle of the bottom sheet, but at the moment only compose UI us moving as expected, but not the bottomsheet. Is there a way I can stick the bottomsheet to UI’s top so it’s also moving when surface height is changing? 😕Albert Chang
01/30/2023, 2:28 PMstick the bottomsheet to UI’s top so it’s also moving when surface height is changingI don’t actually understand what you mean here, but if it’s really the same problem as the comment in the link, you can apply this to the top handle or to the whole bottom sheet content:
Modifier.scrollable(
state = remember { ScrollableState() },
orientation = Orientation.Vertical
)
Rihards
01/30/2023, 2:32 PMAlbert Chang
01/30/2023, 2:37 PMRihards
01/30/2023, 4:24 PM