FLUTTER ECOSYSTEM

LJaraCastillo/flutter_sensor_compass

Ein Plugin zur Ermittlung der Ausrichtung des Geräts (in Grad) relativ zum magnetischen Nordpol.

Projektcover von flutter_sensor_compass
Stars
1
Forks
1
Letzter Push (UTC)
26.11.2019
Projektstatus
Aktiv
Luis Andrés Jara Castillo GitHub avatar
GITHUB User

Luis Andrés Jara Castillo ↗

I'm a software engineer graduated from University of La Frontera.

Temuco, Chile
SprachenDartRubyKotlinSwiftObjective-C

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 3 Einträge

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

flutter_sensor_compass

A plugin to get the orientation of the device (in degrees) relative to the magnetic north.

Installation

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';
iOS only

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>

How to use

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();