Map Input Field for Flutter Forms. Used to select coordinates on a map.
This package makes use of google_maps_flutter, for platform specific setup use the guidelines specified here
LocationFormField(
name: 'Coordinates',
decoration: InputDecoration(labelText: 'Select Location'),
markerIconColor: Colors.red,
markerIconSize: 50,
onChanged: (val){
print(val);
},
),