Skip to main content

Stickers on Flutter

Stickers are interactive objects (gif images) that can be added to the video recording.

Giphy

Video Editor uses Giphy service for loading stickers. Any sticker effect is a GIF file.

Usage

Specify instance of GifPickerConfig in FeaturesConfig:

[!IMPORTANT] To use stickers in your project you need to request personal Giphy API key

final config = FeaturesConfigBuilder()
.setGifPickerConfig(
GifPickerConfig(
giphyApiKey: "...",
mode: GiphyMode.search,
ids: ["...", "..."]
)
)
...
.build();