v0.1.1
flutter_sensor_compass
一個用於取得裝置相對於磁北方向的方位角(以度為單位)的外掛程式。
3喜歡 17近 30 天下載40Pub 分數
平台暫無資料
一個用於取得裝置相對於磁北方向的方位角(以度為單位)的外掛程式。
{"sdk":"flutter"}^0.1.2^2.0.8以下為英文專案原文快照,最新內容請造訪 GitHub。
A plugin to get the orientation of the device (in degrees) relative to the magnetic north.
First add the plugin in your project. Copy the following line below dependencies in your pubspec.yaml file.
dependencies:
...
flutter_sensor_compass: ^0.1.1
Then you need to import the dependency.
import 'package:flutter_sensor_compass/flutter_sensor_compass.dart';
You need to add the following key-value pair into your Info.plist file inside the ios/Runner folder in your project.
<key>NSMotionUsageDescription</key>
<string>A reason to get the permission</string>
You can check if the device is capable of using the compass.
bool isAvailable = await Compass().isCompassAvailable();
Then you can register a new listener for the compass updates.
_compassSubscription =
Compass().compassUpdates(interval: Duration(milliseconds: 200)).listen((value) {
setState(() {
_degrees = value;
});
});
Remember to cancel your StreamSubscriptions after you are done with the compass updates.
_compassSubscription.cancel();