Hello I am new React Native . I created my first application and I noticed there is problem . I can not scroll in my app . When you create a website, if the height of your elements exceeds the height of the page, you have to scroll , but in react native when my application elements exceeds the height of the page , my application doesn't scroll and I can't see any more of my application . how can I fix that ? I still didn't export apk from my application , but it happens in android emulator (genymotion) .
Please wrap your component in a ScrollView.
Should look something like this:
<ScrollView>
<YourComponent />
</ScrollView>