ag_region_monitor 1.0.8
ag_region_monitor: ^1.0.8 copied to clipboard
Region Monitor plugin for Flutter, providing location-based event handling.
1.0.0 #
- Initial release for Region Monitoring in iOS.
1.0.1 #
- Changed minimum flutter version to ^3.29.0 and dart version to ^3.4.0
1.0.3 #
- Local notifications title and body can be customized for each region.
- Enable or Dislable local notifications.
1.0.4 #
- Added support for repeating notifications when the user enters a region
- Added ability to enable or disable repeating notifications
- Added option to configure repeat interval for notifications
1.0.5 #
Added #
checkManualLocation()function to manually check if coordinates fall within active geofence regionsisLocationInAnyRegion()convenience function for boolean location checksgetRegionsContainingLocation()semantic alias for location queries- Distance calculation and reporting for manual location checks
- Automatic notification triggering for manual location matches
Enhanced #
- Improved location validation with detailed region information
- Added comprehensive region data including distance from center
1.0.6 #
- Set botification title and body for didEnterRegion and didExitRegion separately
- Notifications now appear in the foreground also
- Bug fix for all repeating notifications getting cancelled on didExitRegion
1.0.7 #
- Banner error fix
1.0.8 #
Added following to init to fix real device issues.
- locationManager.desiredAccuracy = kCLLocationAccuracyBest
- locationManager.distanceFilter = kCLDistanceFilterNone // Update on all movements
- locationManager.allowsBackgroundLocationUpdates = true // Critical!
- locationManager.pausesLocationUpdatesAutomatically = false