root_access 1.0.2 copy "root_access: ^1.0.2" to clipboard
root_access: ^1.0.2 copied to clipboard

outdated

A new Flutter plugin for enabling root access in Android. Use this plugin to request root access for your app.

example/lib/main.dart

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

import 'package:root_access/root_access.dart';

void main() => runApp(new MyApp());

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

class _MyAppState extends State<MyApp> {
  bool _rootAccess = false;

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

  Future<void> initRootRequest() async {
    bool rootAccess = await RootAccess.rootAccess;

    // 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(() {
      _rootAccess = rootAccess;
    });
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: const Text('Plugin example app'),
        ),
        body: new Center(
          child: new Text('Root access granted: $_rootAccess\n'),
        ),
      ),
    );
  }
}
19
likes
0
pub points
84%
popularity

Publisher

verified publisheramitkhairnar.dev

A new Flutter plugin for enabling root access in Android. Use this plugin to request root access for your app.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on root_access