flutter_device_compass 2.0.0
flutter_device_compass: ^2.0.0 copied to clipboard
A Flutter compass plugin using device sensors. Heading is 0-360 degrees (0 = north).
2.0.0 #
- Package renamed from
flutter_compass_v2toflutter_device_compassfor independent publication on pub.dev - Fork lineage: community-maintained continuation of medyas/flutter_compass_v2 (originally derived from hemanthrajv/flutter_compass)
- Maintainer: Nafis Kabbo
- Migrates Android build to Kotlin DSL with built-in Kotlin support (Flutter 3.44+ and AGP 8/9 compatible)
- Adds iOS Swift Package Manager (SPM) support alongside CocoaPods
- Updates iOS deployment target to 13.0
1.2.0 #
- Community-maintained release on
flutter_compass_v2(pre-rename toflutter_device_compass) - Updated dependencies
- Update the Android implementation
1.1.0 #
- Updated dependencies
- Update the Android implementation
1.0.3 #
- Fix ios pod issue
1.0.1 #
- Fix ios pod issue
1.0.0 #
- Update the Android implementation
0.8.0 #
- Add guard on web (Web always returns an empty stream)
- Heading accounts for orientation on iOS
- Unregister listeners when detaching engine on Android
0.7.0 #
- Updates Android Embedding
- Resolves deprecations warnings
- New Android Implementation supporting Sensor.TYPE_ROTATION_VECTOR and Sensor.TYPE_GEOMAGNETIC_ROTATION_VECTOR.
- Fixes multiple listeners on stream
- Fixes for null safety
0.6.1 #
- Flutter Compass no more depends on RxDart
0.6.0 #
- Migrate to null safety
0.5.1 #
Android:
- Remove roll from heading calculations
- Uses matrix reorientation to do a better job calculating heading "out the back of the phone"
iOS:
- Use the device motion orientation matrix to compute heading out the back of the device. This is much like what is done on Android, and yields a more stable and precise heading.
Dart:
- Add documentation to flutter_compass.dart.
0.5.0 #
Breaking Change: The events stream now gives you CompassEvent that consists of heading, headingForCamera and accuracy.
Android: Remove roll from heading calculations
0.4.3 #
Use geomagnetic rotation sensor as fallback on Android
0.4.2+1 #
Minor fix
0.4.2 #
Updated rxDart to 0.24.0
0.4.1 #
Updated README.md
0.4.0 #
Breaking change: Uses magnetic heading by default for iOS.
Older versions used True heading and which caused deviations.
0.3.7 #
- Sensor check added on android.
nullis returned as direction when no sensor available.
0.3.6 #
- Upgrade
rxdartversion to0.23.1
0.3.5 #
- Improve
README.md
0.3.4 #
- Add
disposemethod
0.3.3 #
- Update
permission_handlerto 3.2.2 - Update
rxdartto 0.22.3
0.3.2 #
- Android: The plugin will now remember the last read azimuth. This will be done across Isolates using a static variable. Additionally, the value is cached within the isolate with the introduction of a RxDart
BehaviorSubject. Reading the current azimuth usingawait FlutterCompass.events.firstwill therefore not hang anymore when the user has not moved the handset at all. - Sample updated to cover the functional updates in Android.
- Added missing location permissions to the Android example which prevented the permission dialog from being shown.
0.3.1 #
- iOS: Remove permission request when Plugin is instantiated. Library users are responsible to request location permission by themselves.
- Request permission in the example directly.
0.3.0 #
- Replace kotlin code with simple java to reduce integration complexity
0.2.0 #
- Upgrade Android build components (Kotlin version) Breaking change. Migrate from the deprecated original Android Support Library to AndroidX. This shouldn't result in any functional changes, but it requires any Android apps using this plugin to also migrate if they're using the original support library.
- Upgrade iOS component to Swift 4.2
0.1.0 #
- Added example
- Added public api docs
0.0.3 #
- bug fixes
0.0.2 #
- Android emulator fix
0.0.1 #
- flutter compass plugin