react-native-keyboard-handle-view
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

react-native-keyboard-handle-view

repo status

📦 Installation

npm install react-native-keyboard-handle-view
# Or using yarn
yarn add react-native-keyboard-handle-view

🥑 Usage

import React, { useState } from 'react';
import { TextInput } from 'react-native';
import KeyboardHandleView from 'react-native-keyboard-handle-view';

const App: React.FC = () => {
  const [text, setText] = useState<string>('');

  return (
    <KeyboardHandleView>
     <TextInput
       value={text}
       onChangeText={setText}
     />
    </KeyboardHandleView>
  );
};

🍻 Components Included

KeyboardHandleView

import KeyboardHandleView from 'react-native-keyboard-handle-view';

KeyboardDismissView

import { KeyboardDismissView } from 'react-native-keyboard-handle-view';

KeyboardAwareScrollView

Exported from the dependency react-native-keyboard-aware-scroll-view

import { KeyboardAwareScrollView } from 'react-native-keyboard-handle-view';

Readme

Keywords

none

Package Sidebar

Install

npm i react-native-keyboard-handle-view

Weekly Downloads

2

Version

0.0.1

License

MIT

Unpacked Size

6.45 kB

Total Files

14

Last publish

Collaborators

  • junhoyeo