awareframework_device 0.0.4 copy "awareframework_device: ^0.0.4" to clipboard
awareframework_device: ^0.0.4 copied to clipboard

The device sensor provides device manufacturer, model, operating system version and other information.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:awareframework_device/awareframework_device.dart';

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {

  DeviceSensor sensor;
  DeviceSensorConfig config;

  @override
  void initState() {
    super.initState();

    config = DeviceSensorConfig()
      ..debug = true;

    sensor = new DeviceSensor.init(config);

    sensor.start();
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
          appBar: new AppBar(
            title: const Text('Plugin Example App'),
          ),
          body: new DeviceCard(sensor: sensor,)
      ),
    );
  }
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

The device sensor provides device manufacturer, model, operating system version and other information.

Homepage

License

unknown (LICENSE)

Dependencies

awareframework_core, flutter

More

Packages that depend on awareframework_device