I want to make something like Google Maps app. When I click a specific pin on the map, it will display a bottom window with general info about the place, as well the option to expand up the info page.
Is something like the images:
In the first one, I've clicked in Light Frei Caneca Pin, and a bottom info window has been displayed. In the second, I slipped it up and a window with all possible information has been shown.
How do I do this bottom info window? I don't even no how to start, but I'm assuming that it's gonna be something like:
Marker m = new Marker(
markerId: new MarkerId(myPin.id),
position: myPin.position,
infoWindow: myCustomInfoWindow(myPin));
mapMarkers.add(m);