Bottom Sheet Styles
data class BottomSheetStyles(val transitionDuration: Int = 300, val scrimColor: Color = Color.Black.copy(alpha = .5f), val maxWidth: Dp = 500.dp, val shadow: OuterShadow = OuterShadow(
blur = 11.dp,
color = Color.Black.copy(alpha = .25f),
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp)
), val backgroundColor: Color = Color.White, val backgroundShape: Shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp), val contentPadding: PaddingValues = PaddingValues(16.dp))
Constructors
Link copied to clipboard
constructor(transitionDuration: Int = 300, scrimColor: Color = Color.Black.copy(alpha = .5f), maxWidth: Dp = 500.dp, shadow: OuterShadow = OuterShadow(
blur = 11.dp,
color = Color.Black.copy(alpha = .25f),
shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp)
), backgroundColor: Color = Color.White, backgroundShape: Shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp), contentPadding: PaddingValues = PaddingValues(16.dp))