Socket
Socket
Sign inDemoInstall

benbeartooth-react-native-image-keyboard

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

benbeartooth-react-native-image-keyboard

Enables clipboard image pasting and GIFs from TextInput.


Version published
Maintainers
1
Weekly downloads
2

Weekly downloads

Readme

Source

react-native-image-keyboard

NPM Version Badge

iOSAndroid
iOS Example GIFAndroid Example GIF

About this package

This is a fork of Gustash's. Only change is depency on react version.

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

TypeScript

If you're using TypeScript in your project, you should add the following import in your index.ts or index.js to make TS aware of the onImageChange prop type:

// index.ts / index.js

import 'react-native-image-keyboard';

// ...
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

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

Keywords

FAQs

Last updated on 07 Dec 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc