flutter_whatsapp_stickers

Last updated:

0 purchases

flutter_whatsapp_stickers Image
flutter_whatsapp_stickers Images
Add to Cart

Description:

flutter whatsapp stickers

WhatsApp Stickers plugin for Flutter #

Note: This plugin is still under development and for now, only Android is supported.
Feedback and Pull Requests welcome!
Getting Started #
Add flutter_whatsapp_stickers as a dependency in your pubspec.yaml file.
Check out the example directory for a sample app.
Android Configuration #
Add the following option to your app\build.gradle file. This will prevent all WebP files from being compressed.
android {
aaptOptions {
noCompress "webp"
}
}
copied to clipboard
Packaged Assess #
You need to include your assets in your pubspec.yaml file.
flutter:
assets:
- sticker_packs/sticker_packs.json
- sticker_packs/1/
copied to clipboard
Dynamic Content #
If you are using assets that are not bundled in your build, then you need to add the following to your Manifest file. Note that you cannot use both.
<meta-data android:name="NonAssetContentProvider" android:value="true" />
copied to clipboard
Sticker Pack Contents File #
To change the stickers packs file, add this Build Config Field to your app\build.gradle file. The default is sticker_packs.json.
buildConfigField("String", "STICKER_PACK_FILE", "\"sticker_packs.json\"")
copied to clipboard
iOS Integration #
Currently, there is no iOS support. Pull requests for this are more than welcome for this.
Methods #
Check if WhatsApp is installed.
bool whatsAppInstalled = await WhatsAppStickers.isWhatsAppInstalled;
copied to clipboard
Check if the WhatsApp Consumer package is installed
bool whatsAppConsumerAppInstalled = await WhatsAppStickers.isWhatsAppConsumerAppInstalled;
copied to clipboard
Check if the WhatsApp Business package app is installed
bool whatsAppSmbAppInstalled = await WhatsAppStickers.isWhatsAppSmbAppInstalled;
copied to clipboard
Check if a sticker pack is installed.
_stickerPackInstalled = await WhatsAppStickers().isStickerPackInstalled(_stickerPackIdentifier);
copied to clipboard
Add a sticker pack to WhatsApp.
WhatsAppStickers().addStickerPack(
packageName: WhatsAppPackage.Consumer,
stickerPackIdentifier: _stickerPackIdentifier,
stickerPackName: _stickerPackName,
listener: _listener,
);
copied to clipboard
Updated Sticker Pack contents and notify listeners
WhatsAppStickers().updatedStickerPacks(_stickerPackIdentifier);
copied to clipboard
The Add Sticker Pack Listener
Future<void> _listener(StickerPackResult action, bool result, {String error}) async {
// Do what you must here
}
copied to clipboard
Here is an example of how to create a custom stickers_packs.json file.
void createLocalFile() async {
String dir = (await getApplicationDocumentsDirectory()).path;
Directory stickersDirectory = Directory("$dir/sticker_packs");
if (!await stickersDirectory.exists()) {
await stickersDirectory.create();
}

File jsonFile = File('$dir/sticker_packs/sticker_packs.json');
String content = jsonEncode(stickerPacks);
jsonFile.writeAsStringSync(content);
}
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.