Skip to content
This repository was archived by the owner on Jul 12, 2022. It is now read-only.

Map Input Field for flutter_form_builder package. Used to select coordinates on a map.

License

Notifications You must be signed in to change notification settings

flutter-form-builder-ecosystem/form_builder_map_field

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6e60394 · Jul 12, 2022

History

4 Commits
Jul 7, 2022
Mar 27, 2020
Mar 27, 2020
Mar 27, 2020
Mar 27, 2020
Mar 27, 2020
Mar 27, 2020
Mar 27, 2020
Jul 12, 2022
Mar 27, 2020
Mar 27, 2020

[Discontinued] form_builder_map_field

This package is discontinued because this reasons:

  • Easy to implement by developers
  • Hard to mantain by community (one more package and dependency with google_maps_flutter)
  • Only provide a solution to Google and no for others providers like OpenMaps

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