ranjeetrocky / installed_apps

Flutter plugin with utility methods related to installed apps on device.

Home Page:https://pub.dev/packages/installed_apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installed Apps

Flutter plugin with utility methods related to installed apps on device. (Currently only Android is supported.)

Getting Started

  1. Installation Guide
  2. Example

Get list of installed apps

List<AppInfo> apps = await InstalledApps.getInstalledApps(bool excludeSystemApps, bool withIcon, String packageNamePrefix);

*Use packageNamePrefix to filter for apps that have package name starting with certain prefix.

Get app info with package name

AppInfo app = await InstalledApps.getAppInfo(String packageName);

Start app with package name

InstalledApps.startApp(String packageName)

Open app settings screen (App Info) with package name

InstalledApps.openSettings(String packageName)

Check if app is system app

bool isSystemApp = await InstalledApps.isSystemApp(String packageName)

About

Flutter plugin with utility methods related to installed apps on device.

https://pub.dev/packages/installed_apps

License:Apache License 2.0


Languages

Language:Kotlin 40.6%Language:Dart 40.3%Language:Ruby 9.1%Language:Objective-C 7.3%Language:Shell 2.6%