Reputation: 41
I want to build an geofencing application in flutter. But I am not finding a way to create geofence from dart so I'm doing platform-channels from java->dart. Is there any other way to create geofence in flutter. Most of the plugins of geofence in flutter does not work properly. So I want to create a geofence application from scratch. Please give me some reference regrading it any tutorials, codes samples, etc.
Upvotes: 2
Views: 2018
Reputation: 4705
I didn't try much but I find one Url or API which may help you
Also, you can add it by adding a dependency in pubspec.yaml
dependencies:
geofence: ^1.0.3
And importing
import 'package:geofence/geofence.dart';
Take a look in example sample from url site.
Upvotes: 0