dimsuz
06/02/2021, 5:22 PMSurface
of my Composable. I suspect this is due to the fact that this Surface
has a semi-transparent color. Is this a current limitation? Or is this some other mechanizm which I've triggered and incorrectly use?
Please checkout screenshot and my composable structure in the thread.Surface(
color = Colors.white30,
shape = Shapes.large,
elevation = 20.dp,// when adding this line, artifacts appear
) {
Column {
Surface(color = Colors.white) {
CurrencyList()
}
Actions()
}
}
Adam Powell
06/02/2021, 5:25 PMdimsuz
06/02/2021, 5:27 PMwhite
Surface, but then this shadow gets clipped.Adam Powell
06/02/2021, 5:28 PMdimsuz
06/02/2021, 5:30 PMAdam Powell
06/02/2021, 5:40 PMChris Sinco [G]
08/26/2021, 12:29 AMdimsuz
08/26/2021, 12:17 PMColumn(background with shape and semitransparent color as seen on bottom buttons) {
Surface(with elevation)
Actions()
}
Chris Sinco [G]
08/26/2021, 4:49 PM