You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello All,
I have faced below issue in ios. (its working fine in android)
Whenever i type in textinput its scroll properly but when i move scrollview and type something behind keyboard field. then field not scroll to up/down.
Here is my code.
<KeyboardAwareScrollView
showsVerticalScrollIndicator={false}
keyboardShouldPersistTaps="never"
ref={customForm}
style={{
flex: 1,
paddingHorizontal: 20,
marginBottom: isKeyboardOpen ? 35 : 0,
}}
contentContainerStyle={{ flexGrow: 1 }}
scrollEnabled={true}
enableAutomaticScroll={true}
enableOnAndroid={isKeyboardOpen ? false : true}
extraScrollHeight={Platform.OS === "ios" ? -160 : 0}
>
Thanks
The text was updated successfully, but these errors were encountered:
Hello All,
I have faced below issue in ios. (its working fine in android)
Whenever i type in textinput its scroll properly but when i move scrollview and type something behind keyboard field. then field not scroll to up/down.
Here is my code.
<KeyboardAwareScrollView
showsVerticalScrollIndicator={false}
keyboardShouldPersistTaps="never"
ref={customForm}
style={{
flex: 1,
paddingHorizontal: 20,
marginBottom: isKeyboardOpen ? 35 : 0,
}}
contentContainerStyle={{ flexGrow: 1 }}
scrollEnabled={true}
enableAutomaticScroll={true}
enableOnAndroid={isKeyboardOpen ? false : true}
extraScrollHeight={Platform.OS === "ios" ? -160 : 0}
>
Thanks
The text was updated successfully, but these errors were encountered: