orientation 1.0.2 copy "orientation: ^1.0.2" to clipboard
orientation: ^1.0.2 copied to clipboard

outdated

A Flutter plugin for device's orientation

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:orientation/orientation.dart';

// https://github.com/flutter/flutter/issues/28134
void main() => runApp(MaterialApp(
      home: MyApp(),
    ));

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Orientation Example'),
      ),
      body: Center(
        child: RaisedButton(
            child: Text('Next'),
            onPressed: () {
              Navigator.push(context, MaterialPageRoute(builder: (_) {
                return NextPage();
              }));
            }),
      ),
    );
  }
}

class NextPage extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    return _NextPageState();
  }
}

class _NextPageState extends State<NextPage> {
  DeviceOrientation _deviceOrientation;

  StreamSubscription<DeviceOrientation> subscription;

  @override
  void initState() {
    super.initState();
    subscription = OrientationPlugin.onOrientationChange.listen((value) {
      // If the widget was removed from the tree while the asynchronous platform
      // message was in flight, we want to discard the reply rather than calling
      // setState to update our non-existent appearance.
      if (!mounted) return;

      setState(() {
        _deviceOrientation = value;
      });

      OrientationPlugin.forceOrientation(value);
    });
  }

  @override
  void dispose() {
    subscription?.cancel();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Orientation'),
      ),
      body: Center(
        child: Text(
            'Running on: ${_deviceOrientation ?? 'Unknown Orientation'}\n'),
      ),
    );
  }
}
17
likes
0
pub points
91%
popularity

Publisher

unverified uploader

A Flutter plugin for device&#x27;s orientation

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on orientation