Jetpack Compose Fixed Footer on a BottomSheet
I'm pretty new to Compose, but I have the composable BenefitsCard Being created as such
@Composable
fun BenefitsCard(showDarkTheme: Boolean, listener: EliteBenefitsListener, data: List? = null) {
BottomSheetWithFixedTitle(
colors = huntColors,
showDarkTheme = showDarkTheme,
listener = listener,
title = R.string.benefit_title
) {
ScrollableBenefitsContent(data)
}
}
This composable appears exactly how a I want it. I can scroll to the bottom...