applications 0.0.1 copy "applications: ^0.0.1" to clipboard
applications: ^0.0.1 copied to clipboard

discontinued

Track number of apps installed as well as their package names.

example/lib/main.dart

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

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

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

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

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

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

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

    // 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(() {
      _applications = applications;
    });
  }

  @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('Applications installed:\n$_applications'),
        ),
      ),
    );
  }
}
0
likes
40
points
28
downloads

Publisher

verified publishercachet.dk

Weekly Downloads

Track number of apps installed as well as their package names.

Homepage

License

MIT (license)

Dependencies

flutter

More

Packages that depend on applications

Packages that implement applications