--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/f9776006-4b96-4662-9dfd-23a0b0f038cb%40googlegroups.com.
--
SearchMapPlaceWidget(
placeType: PlaceType.establishment,
language: 'se',
apiKey: kGoogleApiKey,
onSelected: (place)async{
final geolocation = await place.geolocation;
final chosenPlace = Marker(
markerId: MarkerId('chosen-location'),
icon: await BitmapDescriptor.defaultMarker,
position: geolocation.coordinates,
);
GoogleMapController controller = await _mapController.future;
setState(() {
_selectedPlace = place;
_markers.add(chosenPlace);
});
controller.animateCamera(CameraUpdate.newLatLng(geolocation.coordinates));
controller.animateCamera(CameraUpdate.newLatLngBounds(geolocation.bounds, 50));
},
),
--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/d183976c-9a2a-4f67-9acf-b0085e014873%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/c8f73503-aee1-4217-8f25-b2846e404595%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to flutt...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/8960e7f0-68d6-42aa-bc0f-e4fac8bdd502%40googlegroups.com.
_submit() async {
if (_formKey.currentState.validate()) {
_formKey.currentState.save();
setState(() {
_isLoading = true;
});
_handleImageFromGallery() async {
File imageFile = await ImagePicker.pickImage(source: ImageSource.gallery);
if (imageFile != null) {
setState(() {
_profileImage = imageFile;
});
}
}
--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/39f53470-7840-4ac5-841d-7ccf2b13fd05%40googlegroups.com.