playx_home_launcher

Last updated:

0 purchases

playx_home_launcher Image
playx_home_launcher Images
Add to Cart

Description:

playx home launcher

Playx Home Launcher #
Flutter Plugin for Android
Playx Home Launcher simplifies launcher management in Flutter applications. It provides essential utilities to check the current default launcher and integrate a selection dialog for users to choose their preferred home launcher.
Features #

Obtain the package name of the current default launcher on the user's device.
Seamlessly integrate a selection dialog for users to choose their desired home launcher.
Open the launcher settings on the device.
Check if an app is the default launcher.
Check if an app is alauncher.

Getting Started #


Installation:
Add the Playx Home Launcher package to your pubspec.yaml file:


dependencies:
playx_home_launcher: ^version_number
copied to clipboard
Run:
flutter pub get`
copied to clipboard


Import:
Import the package in your Dart code:


import 'package:playx_home_launcher/playx_home_launcher.dart';`
copied to clipboard


Usage:
Utilize the provided functions to manage launcher-related tasks in your app.


// Returns current launcher package name
String currentLauncher = await PlayxHomeLauncher.getCurrentLauncher();

// Check if the launcher is the default
// packageName variable is optional as if not provided it will use the app package name.
bool? isLauncherDefault = await PlayxHomeLauncher.checkIfLauncherIsDefault(packageName: 'com.example.myapp');

// Show launcher selection dialog if avialble or Open launcher settings
PlayxHomeLauncher.showLauncherSelectionDialog(context);

// Check if the app is a launcher
bool? isAppLauncher = await PlayxHomeLauncher.checkIfAppIsLauncher(packageName: 'com.example.myapp');

// Open launcher settings
await PlayxHomeLauncher.openLauncherSettings();

copied to clipboard


Enjoy:
Enhance your Flutter app with streamlined launcher management using Playx Home Launcher!


Note #
Playx Home Launcher is exclusively designed for Android applications developed with Flutter.
License #
This project is licensed under the MIT License - see the LICENSE file for details.
For more details and examples, refer to the documentation.

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.