KeyboardAwareScrollView not working #713
                  
                    
                      IAlphaOmegaI
                    
                  
                
                  started this conversation in
                General
              
            Replies: 1 comment 2 replies
-
| @IAlphaOmegaI please, provide a minimal reprpoduction example. Information from the code snippet is not enough as I don't have an information about  | 
Beta Was this translation helpful? Give feedback.
                  
                    2 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
-
here is the code sample:
<KeyboardAwareScrollView
style={{
flex: 1,
}}
>
{new Array(10).fill(0).map((_, i) => (
<TextInput
key={i}
placeholder={
TextInput#${i}}className="h-20"
keyboardType={i % 2 === 0 ? "numeric" : "default"}
/>
))}
Beta Was this translation helpful? Give feedback.
All reactions