@config-plugins/ios-stickers
v12.0.0
Published
Config plugin to auto configure iOS iMessage stickers
Readme
@config-plugins/ios-stickers
Config plugin to auto-configure iOS iMessage stickers
Versioning
Ensure you use versions that work together!
| expo | @config-plugins/ios-stickers |
| ------ | ------------------------------ |
| 54.0.0 | 12.0.0 |
| 53.0.0 | 11.0.0 |
| 52.0.0 | 9.0.0 |
| 51.0.0 | 8.0.0 |
| 50.0.0 | 7.0.0 |
| 49.0.0 | 6.0.0 |
Install
This package cannot be used in the "Expo Go" app because it requires custom native code.
npx expo install @config-plugins/ios-stickersExample
In your app.json plugins array:
{
"plugins": [
[
"@config-plugins/ios-stickers",
{
"name": "Stickers!",
"icon": "./assets/imessage-icon.png",
"stickerBundleId": "dev.bacon.iosstickers.stickers",
"columns": 4,
"stickers": [
"./assets/stickers/annoyed.png",
"./assets/stickers/cuddle.png",
"./assets/stickers/crazy.png",
"./assets/stickers/cant.png",
"./assets/stickers/donno.png",
"./assets/stickers/cozzy.png",
"./assets/stickers/dork.png",
"./assets/stickers/focus.png",
"./assets/stickers/avocool.png",
"./assets/stickers/coder-girl.png",
"./assets/stickers/teapot.png"
]
}
]
]
}name: defaults to the iOS app namestickerBundleId: custom bundle identifier for the stickers project, if not provided, it will defaults to${ios.bundleIdentifier}.${name}-Stickersgiven your expo config values.icon: defaults to the iOS app iconcolumns: number of stickers to render, defaults to3. Can be one of2,3,4.stickers: local file paths or remote URLs, or{ image: "...", name: "...", accessibilityLabel: "..." }. Order is preserved.
