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

Plugin to get all device informations like model, platform, manufacturer, os version etc.

my_device_info_plus #

Plugin to get all device informations

Getting Started #

Add into your pubspec.yaml
==========================
my_device_info_plus:
Get device info
================================================
String? _platform = "unknown";
String? _model = "unknown";
String? _manufacturer = "unknown";
String? _os_version = "unknown";
String? _sdk_version = "unknown";

Future<dynamic> getDeviceInfo() async {
var result = await MyDeviceInfoPlus.getDeviceInfo();
setState(() {
    print(result);
    _model = result['model'];
    _manufacturer = result['manufacturer'];
    _os_version = result['os_version'];
    _sdk_version = result['sdk_version'];
    _platform = result['platform'];
});
}

Text('Model: $_model\n'),
Text('Manufacturer: $_manufacturer\n'),
Text('Os_version: $_os_version\n'),
Text('Sdk_version: $_sdk_version\n'),
Text('Platform: $_platform\n'),

4
likes
160
pub points
61%
popularity

Publisher

unverified uploader

Plugin to get all device informations like model, platform, manufacturer, os version etc.

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on my_device_info_plus