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

A Flutter package for getting device name from device identifier.

device_name #

A Flutter package for getting device name from device identifier.

Getting Started #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  flutter:
    sdk:
  device_name: ^{latest_version}

In your library add the following import:

import 'package:device_name/device_name.dart';

Usage #

Import package:device_name/device_name.dart, instantiate DeviceName and use iOS getters to get device name.

You can get the device identifier from device_info. Get utsname.machine from iosInfo.

import 'package:device_name/device_name.dart';

Future<void> main() async {
  final identifier = 'iPhone13,4';

  final deviceName = DeviceName();
  
  print('device name is ${deviceName.ios(identifier)}');
  // device name is iPhone 12 Pro Max

  print('device name is ${await deviceName.apple(identifier)}');
  // device name is iPhone 12 Pro Max
}

Reference #

Models - The iPhone Wiki Apple_mobile_device_types.txt

13
likes
100
pub points
84%
popularity

Publisher

unverified uploader

A Flutter package for getting device name from device identifier.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, html, http

More

Packages that depend on device_name