flutter_app_checker

Last updated:

0 purchases

flutter_app_checker Image
flutter_app_checker Images
Add to Cart

Description:

flutter app checker

flutter_app_checker #
A flutter plugin to check whether an app is installed on a device or not.
Android #
Android needs package name, example:
String appName = "com.instagram.android";

bool isInstalled = await FlutterAppChecker.isAppInstalled(appName: appName);

if(isInstalled){
// app is installed
} else{
// app is not installed
}

copied to clipboard
IOS #
Apps for iOS 9 and later must have a list of requested URL schemes in the Info.plist before being allowed to use canOpenURL.
Add app name to Info.plist under LSApplicationQueriesSchemes key:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>instagram</string>
</array>
copied to clipboard
then check:
String appName = "instagram";

bool isInstalled = await FlutterAppChecker.isAppInstalled(appName: appName);

if(isInstalled){
// app is installed
} else{
// app is not installed
}

copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.