is there a compose way to do viewpagers/bottom nav...
# compose
d
is there a compose way to do viewpagers/bottom navs?
t
It is different. So as far as i know you can build it on own very easy. The different parts are already there. TabRow/Tab and to switch between views you can just use a state and maybe a when? S.th. like that:
Copy code
when (selection) {
    <http://ConfigType.Info|ConfigType.Info> -> InfoView(show)
    ConfigType.Misc -> MiscView(config, config)
    ConfigType.Effects -> ImageEffectsView(config)
    ConfigType.AnimationMode -> AnimationModeView(config)
}
d
Thanks!