What is the best way to toggle visibility of a com...
# compose
x
What is the best way to toggle visibility of a composable based on available height? - so that we can show/hide when the keyboard is up for instance
z
BoxWithConstraints
is the simplest way to make your composables respond to their available size
🙌 1
x
Thanks for the direction!