UNPKG

react-native-base-stickers

Version:

create sticker packs for whatsapp with your react-native app

13 lines (9 loc) 365 B
import { Linking, NativeModules } from 'react-native' const { RNWhatsAppStickers } = NativeModules const isWhatsAppAvailable = () => new Promise((resolve, reject) => Linking.canOpenURL('whatsapp://send') .then(supported => resolve(supported)) .catch(e => reject(e)) ) export default { ...RNWhatsAppStickers, isWhatsAppAvailable }