flutter_location_picker 0.0.4 copy "flutter_location_picker: ^0.0.4" to clipboard
flutter_location_picker: ^0.0.4 copied to clipboard

outdated

select position.

flutter_location_picker #

A new Flutter project.

Usage #


LocationPicker.showPicker(
  context,
  showTitleActions: true,
  initialProvince: '上海',
  initialCity: '上海',
  initialTown: null,
  onChanged: (p, c, t) {
    print('$p $c $t');
  },
  onConfirm: (p, c, t) {
    print('$p $c $t');
  },
);