Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Flutter Geolocator | 1,144 | 145 | 114 | 2 days ago | 119 | September 06, 2023 | 65 | mit | Dart | |
Android and iOS Geolocation plugin for Flutter | ||||||||||
Flutter_background_geolocation | 580 | 4 | 1 | 23 days ago | 110 | June 21, 2022 | 139 | other | Dart | |
Sophisticated, battery-conscious background-geolocation & geofencing with motion-detection | ||||||||||
Surfgear | 331 | 2 | 3 months ago | 20 | June 04, 2021 | 4 | apache-2.0 | |||
Gear for safe Surf in Flutter | ||||||||||
Geolocation | 180 | 4 | 4 years ago | 10 | February 05, 2020 | 13 | apache-2.0 | Dart | ||
Flutter geolocation plugin for Android and iOS. | ||||||||||
Beacons | 61 | 3 | 4 years ago | 8 | June 01, 2018 | 30 | apache-2.0 | Dart | ||
Flutter beacons plugin for Android and iOS. | ||||||||||
Dating App Concept Flutter | 36 | 5 years ago | mit | Dart | ||||||
Dating App UI concept made to showcase Flutter in SheCodes hackathon | ||||||||||
Flutter Googlemaps Geolocation | 28 | 5 years ago | 1 | Dart | ||||||
Code for geolocation, google maps and some cool effects with camera position | ||||||||||
Weather App | 22 | 5 months ago | Dart | |||||||
A fully functional weather app with real time updates built with flutter SDK. | ||||||||||
Flutter_background_geolocation_firebase | 19 | 1 | 2 months ago | 5 | November 30, 2021 | 9 | mit | Dart | ||
Firebase proxy for Flutter Background Geolocation SDK | ||||||||||
Flutter_geolocation | 10 | 5 years ago | gpl-3.0 | Java | ||||||
Flutter plugin to get current location from GPS |
The Flutter geolocator plugin is build following the federated plugin architecture. A detailed explanation of the federated plugin concept can be found in the Flutter documentation. This means the geolocator plugin is separated into the following packages:
geolocator
: the app facing package. This is the package users depend on to use the plugin in their project. For details on how to use the geolocator
plugin you can refer to its README.md file.geolocator_android
: this package contains the endorsed Android implementation of the geolocator_platform_interface and adds Android support to the geolocator
app facing package. More information can be found in its README.md file;geolocator_apple
: this package contains the endorsed iOS and macOS implementations of the geolocator_platform_interface and adds iOS and macOS support to the geolocator
app facing package. More information can be found in its README.md file;geolocator_web
: this package contains the endorsed web implementation of the geolocator_platform_interface and adds web support to the geolocator
app facing package. More information can be found in its README.md file;geolocator_windows
: this package contains the endorsed Windows implementation of the geolocator_platform_interface and adds Windows support to the geolocator
app facing package. More information can be found in its README.md file;geolocator_platform_interface
: this packages declares the interface which all platform packages must implement to support the app-facing package. Instructions on how to implement a platform packages can be found in the README.md of the geolocator_platform_interface
package.