# react-native-keyboard-view
**Repository Path**: yaojinye/react-native-keyboard-view
## Basic Information
- **Project Name**: react-native-keyboard-view
- **Description**: KeyboardView for react-native
- **Primary Language**: Objective-C
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-06-17
- **Last Updated**: 2021-06-17
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# react-native-keyboard-view
KeyboardView Library for react-native
## Supports:
only supports: react-native >= 0.42.0
platform:
ios √
android √

### Installation
* Install from npm
```bash
npm i react-native-keyboard-view --save
```
* Link native library
```bash
react-native link react-native-keyboard-view
```
### Usage
```javascript
import KeyboardView from 'react-native-keyboard-view';
class Example extends Component {
close() {
KeyboardView.dismiss();
};
_renderStickyView() {
return (
BUTTON
);
};
_renderCover() {
return (
);
};
render() {
return (
console.log('onShow')}
onHide={() => console.log('onHide')}
renderStickyView={this._renderStickyView}
renderCover={this._renderCover}
>
);
}
}
```