Does `View.INVISIBLE` analog exist?
# compose
g
Does
View.INVISIBLE
analog exist?
a
Just don't place the composable there, use Spacer instead
g
How I supposed to make Spacer exact the same width and height as component that I want to make invisible
s
There is
Modifier.drawOpacity
👍 1
m
You can use
Modifier.drawLayer(alpha = 0f)
does the same thing as the old
View.INVIZIBLE
.
👍 1