We can set the gradient background in the sheets with
fun Modifier.gradientBackground(): Modifier {
return Modifier.background(
brush = Brush.verticalGradient(
colors = listOf(Color(0xFF1A1A1A), Color(0xFF000000))
)
)
}
But the main problem is the SheetTopBar background. maybe it will be necessary to create a custom topbar with transparent background
Originally posted by @jvsena42 in #81 (review)