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

Plugin to get the list of applications installed on the device (Android only) And This is a repair vision.

###statement First, mark the original author of the plug-in,Author: Edouard Marquez Uploader moi@edouard-marquez.me

Flutter Device apps repair plugin #

Plugin to get the list of installed applications (iOS is not supported yet).

Getting Started #

First, you have to import the package in your dart files with:

import 'package:device_apps/device_apps.dart';

List of installed applications #

To get the list of the apps installed on the device:

List<Application> apps = await DeviceApps.getInstalledApplications();

You can filter system apps if necessary. Note: The list of apps is not ordered!

Get apps with launch intent #

You can now get only those apps with launch intent by using the following option. Also add includeSystemApps option to get all the apps that have launch intent.

// Returns a list of only those apps that have launch intent
// The main thing is to modify this place.
List<ApplicationWithIcon> apps = await DeviceApps.getInstalledApplications(onlyAppsWithLaunchIntent: true, includeSystemApps: true)

Get an application #

To get a specific app by package name:

Application app = await DeviceApps.getApp('com.frandroid.app');

Check if an application is installed #

To check if an app is installed (via its package name):

bool isInstalled = await DeviceApps.isAppInstalled('com.frandroid.app');

Open an application #

To open an application

DeviceApps.openApp('com.frandroid.app');

Displaying app icon #

When calling the getInstalledApplications() or getApp() methods, you can ask for the icon. To display the image, just call:

//uint8list  Type
Image.memory(app.icon);
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Plugin to get the list of applications installed on the device (Android only) And This is a repair vision.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on device_apps_repair