Geofence in Flutter - Where to do a jump start?

Hey, So I’m about to implement a geofence for an app.
Usecase: Its a rally racing app and we want to trigger a few APIs and business logic as the user enters the rally’s geofence and the stage geofence. (These geofence co-ordinates and data will be given by Backend)

Concerns:

Lastly, should I go for it and implement an “on-request” logic i.e. I can check if the user is in rally’s geofence on app start. (Of course I’ll use AI to build up the logic of all this maths xD)

Thanks

Just use geo_utilities does all the checks for you

1 Like

Für Ihre Rallye-App ist es sinnvoll, verschiedene Ansätze zu kombinieren. Ein Geofence-Dienst im Vordergrund gewährleistet Echtzeit-Trigger, selbst wenn die App im Hintergrund läuft. Dies ist besonders nützlich für das Betreten und Verlassen von Etappen-Geofences. Die Standortprüfung beim App-Start ergänzt dies und ermöglicht die sofortige Überprüfung des casino Nalu aktuellen Nutzerstandorts, ohne auf Geofence-Ereignisse warten zu müssen. Vergleichen Sie die verschiedenen Pakete hinsichtlich Stabilität, Hintergrundunterstützung und Community-Feedback – manchmal sind kleinere Unterschiede in der Zuverlässigkeit wichtiger als zusätzliche Funktionen. Ein hybrider Ansatz – Echtzeit-Geofence-Trigger plus anfängliche Standortprüfung – bietet in der Regel die beste Benutzererfahrung.

1 Like

By far probably one the finest advice I got in this niche of geofence. Thanks man, I’m surely looking for packages and libraries. There’s not much support flutter, for android/iOS there are tons of native support package available so I’m just trying ti build up some custom solutions.

Cheers (Thanks once again)