I am trying to add floating action button that stick into another widget.. here is part of my code..
Container(
width: MediaQuery.of(context).size.width,
height: MediaQuery.of(context).size.height / 2,
child: GoogleMap(
mapType: MapType.normal,
initialCameraPosition: init,
markers: ...
circles: ...,
onMapCreated: (GoogleMapController controller) {
_controller = controller;
},
),
);
I put my Maps screen inside Container... but I want to add floating action button that stick into my maps screen.. is it possible to do that?
