ReactNative version: 0.63.2
Expo version: 39.0.0
NativeBase version: 2.13.14
Test Platform: iOS
When an Input in Content component gets focus and the keyboard pops up, an error message will appear: currentlyFocusedField is deprecated and will be removed in a future release. Use currentlyFocusedInput
I think it should be caused by @codler/react-native-keyboard-aware-scroll-view

Same error, on <Input></Input>
I've just created a PR to fix this in NativeBase, in the meantime if you add
"@codler/react-native-keyboard-aware-scroll-view": "1.0.1", in your own package.json it'll override the NB version that includes this fix
Any update on this?
Same problem here:
ReactNative version: 0.63.2
Expo version: 39.0.0
NativeBase version: 2.13.15
Test Platform: iOS
.....
import {
Container,
Form,
Item,
Input,
Button,
Icon
} from 'native-base';
....
<Input
placeholder="Utente"
autoCorrect={false}
autoCapitalize="none"
onChangeText={this.onUsernameChange.bind(this)}
value={this.props.username}
/>
The error:
currentlyFocusedField is deprecated and will be removed in a future release. Use currentlyFocusedInput
Most helpful comment
I've just created a PR to fix this in NativeBase, in the meantime if you add
"@codler/react-native-keyboard-aware-scroll-view": "1.0.1",in your own package.json it'll override the NB version that includes this fix