serial_number 0.0.6 copy "serial_number: ^0.0.6" to clipboard
serial_number: ^0.0.6 copied to clipboard

outdated

Get the serial number of the physical device. This was created to meet an enterprise application that requires the serial number, making this public in case anyone needs the same functionality.

example/lib/main.dart

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

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

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

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

class _MyAppState extends State<MyApp> {
  String _serialNumber = 'Unknown';


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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String serialNumber;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
     serialNumber = await SerialNumber.serialNumber;
    } on PlatformException {
      serialNumber = 'Failed to get serial number.';
    }

    // 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(() {
      _serialNumber = serialNumber;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text(_serialNumber),
        ),
      ),
    );
  }
}
3
likes
20
pub points
53%
popularity

Publisher

unverified uploader

Get the serial number of the physical device. This was created to meet an enterprise application that requires the serial number, making this public in case anyone needs the same functionality.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on serial_number