google_map_location_picker_flutter 0.0.103 copy "google_map_location_picker_flutter: ^0.0.103" to clipboard
google_map_location_picker_flutter: ^0.0.103 copied to clipboard

outdated

This package for pick or search on google map.

TODO: This package for pick or search on google map.

Features #

TODO: This package for pick or search on google map.

Getting started #

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage #

to /example folder.

```dart
    AddressResult result = await  showGoogleMapLocationPicker(
        pinWidget: Icon(Icons.location_pin,color: Colors.red,size: 55,),
        pinColor: Colors.blue,
        context: context,
        addressPlaceHolder: "حرك الخريطة",
        addressTitle: "عنوان التوصيل",
        apiKey: "",
        appBarTitle: "حدد موقع التوصيل",
        confirmButtonColor: Colors.blue,
        confirmButtonText: "تأكيد الموقع",
        confirmButtonTextColor: Colors.black,
        country:"sa",
        language:"ar" ,
        searchHint: "ابحث عن موقع", initialLocation: LatLng(26,39)
    );
    if(result!=null){
     print(result.address)
    }

## Additional information

TODO: Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.