skip to Main Content

React Native Component Hide with Keyboard

I create Header and Gifted Chat in React Native. return ( <View style={{ flex: 1, backgroundColor: '#fff' }}> <StatusBar backgroundColor="#4A43EC" barStyle="light-content" /> {/* Header */} <KeyboardAvoidingView > <View style={{ flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', width: '100%', paddingVertical: 16, backgroundColor:…

VIEW QUESTION

Flutter – TextField Hides Behind Keyboard

There is a bottomsheet in flutter code - bottomsheet contains an TextField , While clicking on TextField , Keyboard Covers the TextFeild. Below is the code for bottom sheet showModalBottomSheet( context: context, isScrollControlled: true, builder: (BuildContext buildContext) { return SizedBox(…

VIEW QUESTION
Back To Top
Search