form_builder_map_field 1.0.0-alpha.1 form_builder_map_field: ^1.0.0-alpha.1 copied to clipboard
Location 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 #
FormBuilderLocationField(
name: 'Coordinates',
decoration: InputDecoration(labelText: 'Select Location'),
markerIconColor: Colors.red,
markerIconSize: 50,
onChanged: (val){
print(val);
},
),