You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #347, the myLocationButton parameter for the GoogleMap composable was introduced and a new Row child was added. The problem now is that this Row uses the same (passed in) modifier as the AndroidView. In my use case, I have to set a custom background color to the map to better integrate it into our design just before the map loads. With the modifier parameter being used twice, that is not possible, as the Row overlays the AndroidView with the same size and the provided background color.
Steps to reproduce
Use the GoogleMap composable and provide a .background(Color.Black) modifier.
The color overlays the map so that it is not visible anymore.
The text was updated successfully, but these errors were encountered:
ln-12
added
triage me
I really want to be triaged.
type: bug
Error or flaw in code with unintended results or allowing sub-optimal usage patterns.
labels
Oct 20, 2023
If you would like to upvote the priority of this issue, please comment below or react on the original post above with 👍 so we can see what is popular when we triage.
@ln-12 Thank you for opening this issue. 🙏
Please check out these other resources that might help you get to a resolution in the meantime:
In #347, the
myLocationButton
parameter for theGoogleMap
composable was introduced and a newRow
child was added. The problem now is that thisRow
uses the same (passed in) modifier as theAndroidView
. In my use case, I have to set a custom background color to the map to better integrate it into our design just before the map loads. With the modifier parameter being used twice, that is not possible, as theRow
overlays theAndroidView
with the same size and the provided background color.Steps to reproduce
GoogleMap
composable and provide a.background(Color.Black)
modifier.Code example
The text was updated successfully, but these errors were encountered: