Drawer Styles
data class DrawerStyles(val topMargin: Dp = 0.dp, val transitionDuration: Int = 300, val scrimColor: Color = Color.Black.copy(alpha = .5f), val width: Dp = 300.dp, val shadow: OuterShadow = OuterShadow(
blur = 11.dp,
color = Color.Black.copy(alpha = .25f),
shape = RoundedCornerShape(topEnd = 16.dp, bottomEnd = 16.dp)
), val backgroundColor: Color = Color.White, val backgroundShape: Shape = RoundedCornerShape(topEnd = 16.dp, bottomEnd = 16.dp), val contentPadding: PaddingValues = PaddingValues(16.dp))
Constructors
Link copied to clipboard
constructor(topMargin: Dp = 0.dp, transitionDuration: Int = 300, scrimColor: Color = Color.Black.copy(alpha = .5f), width: Dp = 300.dp, shadow: OuterShadow = OuterShadow(
blur = 11.dp,
color = Color.Black.copy(alpha = .25f),
shape = RoundedCornerShape(topEnd = 16.dp, bottomEnd = 16.dp)
), backgroundColor: Color = Color.White, backgroundShape: Shape = RoundedCornerShape(topEnd = 16.dp, bottomEnd = 16.dp), contentPadding: PaddingValues = PaddingValues(16.dp))