Hey guys!.. Please can you suggest a way on how to...
# android
a
Hey guys!.. Please can you suggest a way on how to pass object in navigation compose
c
Long story short... you shouldn't be passing objects in navigation. Think of it like a web url. You only pass small amount of args, but not full on objects.
3
h
I just use navGraphViewModels when I pass object in jetpack nav component. I think ViewModel will be proper solution of that case.
a
Thanks guys for suggestions