device_apps 2.0.0 copy "device_apps: ^2.0.0" to clipboard
device_apps: ^2.0.0 copied to clipboard

discontinued
outdated

Plugin to list applications installed on an Android device (iOS is not supported). You can also monitor application changes (updates, uninstallation…)

example/lib/main.dart

import 'package:device_apps_example/apps_events.dart';
import 'package:device_apps_example/apps_list.dart';
import 'package:flutter/material.dart';

void main() => runApp(MaterialApp(home: const ExampleApp()));

class ExampleApp extends StatelessWidget {
  const ExampleApp();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('Device apps demo')),
      body: Center(
        child: Column(
          mainAxisSize: MainAxisSize.min,
          children: <Widget>[
            TextButton(
                onPressed: () {
                  Navigator.push(
                    context,
                    MaterialPageRoute<Object>(
                        builder: (BuildContext context) => AppsListScreen()),
                  );
                },
                child: Text('Applications list')),
            TextButton(
                onPressed: () {
                  Navigator.push(
                    context,
                    MaterialPageRoute<Object>(
                        builder: (BuildContext context) => AppsEventsScreen()),
                  );
                },
                child: Text('Applications events'))
          ],
        ),
      ),
    );
  }
}
341
likes
0
points
30.7k
downloads

Publisher

verified publisherdaad.mobi

Weekly Downloads

Plugin to list applications installed on an Android device (iOS is not supported). You can also monitor application changes (updates, uninstallation…)

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on device_apps