is_device_secure 0.0.2 copy "is_device_secure: ^0.0.2" to clipboard
is_device_secure: ^0.0.2 copied to clipboard

outdated

This plugin can check security status of the device. There was no option to detect the current security status of the device from the Flutter application.I have created this plugin to accommodate that [...]

example/lib/main.dart

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

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

void main() {
  runApp(MyApp());
}

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

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

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

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

    try {
      isSecured =  "${await IsDeviceSecure.secure}";
    } on PlatformException {
      isSecured = 'Failed to get security status.';
    }

    // 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(() {
      _platformVersion = platformVersion;
      _isSecured = isSecured;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            children: [
              Text('Running on: $_platformVersion\n'),
              Text('Is Secured on: $_isSecured'),
            ],
          ),
        ),
      ),
    );
  }
}
11
likes
30
pub points
78%
popularity

Publisher

unverified uploader

This plugin can check security status of the device. There was no option to detect the current security status of the device from the Flutter application.I have created this plugin to accommodate that requirement.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on is_device_secure