Can someone Explain to me if you would ever want ...
# compose
v
Can someone Explain to me if you would ever want to make a hybrid come a hybrid compose an XML android app. Would there be any benefits to designing an app that uses both
a
I would think if there are things that are missing from compose that the view system provides, like shared element transitions, etc
☝️ 2
But that pattern is really better for migrating over from XML to Compose
m
There is not shared elements in compose currently
v
What about things like replacing recyclervuews with lazycolumns and such? I would think that would simplify app making.
m
True. It does a lot
a
Yeah, I meant that by saying it doesn't support it, the view system does
In terms of lazy columns, that would be a lot of viewinterop usage if you had XML layouts there
Depends on how it's used
v
Hmm, sounds like an idea for a blog topic. Might give it a go and write some examples pros and cons and such.