Skip to main content

Stickers on React Native

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

private featuresConfig = new FeaturesConfigBuilder()
.setGifPickerConfig(new GifPickerConfig({
giphyApiKey: "...",
mode: GiphyMode.search,
ids: ["...","..."]
}))
...
.build();