form_builder_map_field 0.0.1 form_builder_map_field: ^0.0.1 copied to clipboard
Map Input Field for flutter_form_builder package. Used to select coodinates on a map.
form_builder_map_field #
Map Input Field for flutter_form_builder package. Used to select coordinates on a map.
Setup #
This package makes use of google_maps_flutter, for platform specific setup use the guidelines specified here
Usage #
FormBuilderMapField(
attribute: 'Coordinates',
decoration: InputDecoration(labelText: 'Select Location'),
markerIconColor: Colors.red,
markerIconSize: 50,
onChanged: (val){
print(val);
},
),