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

discontinued
PlatformAndroid

Detect android device info, MIUI version, etc.

device_detect #

Detect android device info, MIUI version, etc.

Getting Started #

It is really easy to use! You should ensure that you add the device_detect as a dependency in your flutter project, Supported Android only.

dependencies:
  device_detect: "^1.0.0"

Feature #

  • Detect MIUI
final result = await DeviceDetect.isMi;
  • Detect by System Property
final result = await DeviceDetect.hasSystemProperty('ro.miui.ui.version.name');

Usage #

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: Center(
          child: Column(
            children: [
              FutureBuilder(
                future: DeviceDetect.isMi,
                builder: (_, snapshot) => Text('MIUI: ${snapshot.data}'),
              ),
              FutureBuilder(
                future: DeviceDetect.hasSystemProperty(
                  'ro.miui.ui.version.name',
                ),
                builder: (_, snapshot) => Text('MIUI: ${snapshot.data}'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
0
likes
140
points
16
downloads

Publisher

verified publisherwachasit.com

Weekly Downloads

Detect android device info, MIUI version, etc.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on device_detect