I’m trying to make a new app with maps. I’m even thinking about actual distribution.
Is it ok to implement with 100% compose? In other apps being developed by the company, it has not been completely converted due to compose navigation.
c
Colton Idle
10/27/2022, 3:28 PM
I'd say so. compose-maps is a thing now too which is really helpful.
s
Shafayat Bin Mamun
10/27/2022, 4:23 PM
If you want custom markers then no.
c
Colton Idle
10/27/2022, 5:51 PM
Custom marker support was added. It's experimental I think, but still technically there.
Colton Idle
10/27/2022, 5:51 PM
And even without that experimental support, you can still use AndroidView + mapView. but yeah.
m
mattinger
10/27/2022, 6:19 PM
Keep in mind, nothing is forcing you to use Compose navigation. I use the accompanist extensions because we need actual animations on transition, but it works really well. But you could always use the xml based version, and just implement your fragment’s UI using compose.