huuthinh95

Results 4 comments of huuthinh95

You can try lib: [https://github.com/thomasgazzoni/react-native-keyboard-area](url) for android. You change the SoftInput mode to ADJUST_NOTHING only for the pages, example: ```js import { RNKeyboard, SoftInputMode } from 'react-native-keyboard-area'; componentDidMount() { navigation.addListener('blur',...

hi @fukemy Your problem on android or IOS. If on android, you need set **_SoftInput_** mode to **_ADJUST_NOTHING_**. ```js import { RNKeyboard, SoftInputMode } from 'react-native-keyboard-area'; componentDidMount() { navigation.addListener('blur', this.componentDidExit);...

@000xuandu you can try this code. ```js import React, { useState, useCallback, useEffect, useRef } from 'react'; import { TextInput, TouchableOpacity, View, Text, Keyboard, Animated, Platform } from 'react-native'; import...

You can try [https://stackoverflow.com/questions/3295672/android-soft-keyboard-covers-edittext-field](url)