aman_device_information_plugin 1.0.0 copy "aman_device_information_plugin: ^1.0.0" to clipboard
aman_device_information_plugin: ^1.0.0 copied to clipboard

Plugin to show device information.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:aman_device_information_plugin/aman_device_information_plugin.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';
  String _deviceName = 'Unknown';
  String _systemName = 'Unknown';

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    String deviceName;
    String systemName;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    try {
      platformVersion = await AmanDeviceInformationPlugin.platformVersion ?? 'Unknown platform version';
      deviceName = await AmanDeviceInformationPlugin.deviceNameValue ?? 'Unknown Device Name';
      systemName = await AmanDeviceInformationPlugin.deviceSystemValue ?? 'Unknown System Name';
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
      deviceName = 'Failed to get device name';
      systemName = 'Failed to get System Name';
    }

    // 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(() {
      _platformVersion = platformVersion;
      _deviceName = deviceName;
      _systemName = systemName;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n Device Name: $_deviceName\n System Name: $_systemName'),
        ),
      ),
    );
  }
}
1
likes
130
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

Plugin to show device information.

Repository

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on aman_device_information_plugin

Packages that implement aman_device_information_plugin