Thanks for your work on this one, it's really great to finally have an official Compose wrapper for Google Maps!
In our use case, we have a custom GoogleMaps wrapper using AndroidView that sits inside a LazyColumn. It is able to be scrolled vertically and horizontally without scrolling the LazyColumn by using a transparent view and calling .requestDisallowInterceptTouchEvent(true) on the parent.
We are hoping to switch to this, but we noticed it still suffers from the original issue we had to work around. Is usage in a LazyColumn a supported use case and is there a more Compose-friendly way to get nested scrolling working properly with this wrapper?
Thanks!
Steps to reproduce
- Include GoogleMap in a LazyColumn
- Vertically drag on the map to attempt to scroll it
- Observe the LazyColumn scrolls instead of the map
Thanks!
Thanks for your work on this one, it's really great to finally have an official Compose wrapper for Google Maps!
In our use case, we have a custom GoogleMaps wrapper using AndroidView that sits inside a LazyColumn. It is able to be scrolled vertically and horizontally without scrolling the LazyColumn by using a transparent view and calling
.requestDisallowInterceptTouchEvent(true)on the parent.We are hoping to switch to this, but we noticed it still suffers from the original issue we had to work around. Is usage in a LazyColumn a supported use case and is there a more Compose-friendly way to get nested scrolling working properly with this wrapper?
Thanks!
Steps to reproduce
Thanks!