Skip to main content

All Questions

0 votes
2 answers
143 views

How to fix the problem of overflow pixel in flutter?

I am experience an issue of pixel overflow what i mean here once i use launch() method to tap for popup(email and google-maps) when a user clicks icons for both email and location. It must prompts ...
2 votes
2 answers
2k views

Showing Location in a small widget

I want to create a screen where it will show the location of the company in a small map on the screen when the longitude and the latitude is given.The map should not take up the whole page.The idea is ...
5 votes
0 answers
504 views

Widget testing google maps in flutter

I have an app that uses google maps and I'm generating markers on the screen. I want to be able to tap them using tester, but because they are apart of the googlemap I can't search by type or by key, ...
0 votes
1 answer
2k views

Flutter google map current location to center point of screen

I am creating a flutter application and using google map inside it, I need to get the position information of center of screen, therefore, I putted an Icon on the middle of screen using center ...
0 votes
1 answer
494 views

MapView in Flutter

I am working on a map application, which uses GoogleMaps, but I am having problems on the page that should display the map. Trying to use the MapView gives me the error "Item type 'MapView<...
1 vote
0 answers
275 views

Flutter / When I change the height of the Google Maps, the map area comes out white

Why does the map disappear when I change the height? I need to change the height of the map. I need to know the center coordinates of the map, so I need to adjust the height. Code: class mapTest2 ...
1 vote
2 answers
11k views

How to create custom Image Marker for google map in flutter and us it inside custom widget?

How to use custom widget as market in flutter google map as to below image or how to achieve the below image as output in flutter ? This is my first time working with maps in flutter. I know that I ...
0 votes
1 answer
823 views

Pass coordinates Latlng from map widget to Void function in the same screen

I'm new to the Flutter world and mobile app development and struggling with how I should pass data throughout my app. This is my code, How can I pass Latlng cordinate from the google map widget (when ...
0 votes
1 answer
2k views

Cluster markers in Flutter's flutter_google_map_view widget

I searched in flutter_google_map_view repository and there is a class called cluster. However, there is not an implementation example and this small class seems like only a wrapper for marker class. ...