I’ve created a simple app with Navigation Componen...
# compose
g
I’ve created a simple app with Navigation Component and a few fragments. Should I replace only the fragment views with Compose (which I am not sure how to do) or should I go all the way and replace everything with Compose and do something like the JetNews sample does, or is there any better example?
i
Certainly if you have an app already built, it is going to be way easier to first convert one fragment at a time to Compose, then tackling converting the glue code between them later
👍 1
g
Thank you @Ian Lake!