flutter-form-builder-ecosystem / form_builder_map_field

Map Input Field for flutter_form_builder package. Used to select coordinates on a map.
https://pub.dev/packages/form_builder_map_field
BSD 2-Clause "Simplified" License
6 stars 3 forks source link
dart flutter

[Discontinued] form_builder_map_field

This package is discontinued because this reasons:

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);
  },
),