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

Get the serial number of the physical device. Currently working on Android with iOS version coming soon

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
30
pub points
53%
popularity

Publisher

unverified uploader

Get the serial number of the physical device. Currently working on Android with iOS version coming soon

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on serial_number