2.1.3 • Published 2 years ago

@duell10111/react-native-image-keyboard v2.1.3

Weekly downloads
-
License
GPLv3
Repository
github
Last release
2 years ago

@duell10111/react-native-image-keyboard

NPM Version Badge

iOSAndroid
iOS Example GIFAndroid Example GIF

About this package

This package extends React Native's TextInput component to enable keyboard image input on:

  • Android (e.g. Gboard GIFs)
  • iOS (e.g. Pasting images copied to the clipboard)

Getting started

$ npm install react-native-image-keyboard --save

Mostly automatic installation

$ react-native link react-native-image-keyboard (RN < 0.60)

$ cd ios/ && pod install

Usage

import {TextInput} from 'react-native';

const App = () => {
  const _onImageChange = (event) => {
    const {uri, linkUri, mime, data} = event.nativeEvent;

    // Do something with this data
  }

  return <TextInput onImageChange={_onImageChange} />;
}

Credits

Original logic from Gustash

Android logic based on stwiname's PR: https://github.com/facebook/react-native/pull/26088