dewildte
08/25/2023, 8:10 PMAnimatedVisibility
to wrap a NavBarItem
in a NavBar
the AnimatedVisibility
fills the max space of the bar.
Not sure how to prevent this from happening.
Has anyone else run into this?dewildte
08/25/2023, 8:10 PMStylianos Gakis
08/25/2023, 11:12 PMDoris Liu
08/28/2023, 10:17 PMNavBarItem
has a weight set on it. When wrapped in an AnimatedVisibility, the NavBarItem
is no longer the direct child of the Row
(created by NavBar
). Instead, it becomes the only child of the Layout
defined by AnimatedVisibility. So the weight
doesn't have intended effect of constraining size relative to siblings in the same Row
dewildte
08/29/2023, 11:28 PM