We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we have a root view, it will overlap status bar. We have to manually set a marginTop to the view.
marginTop
The same issue happens when working with NavigationIOS, the initialRoute view will still need a top margin to have its content visible.
initialRoute
Any options can deal with this issue?
The text was updated successfully, but these errors were encountered:
I figured this out.
I was using <Text> as root element, which will cause this issue.
<Text>
Very simple solution will be wrap the <Text> with a container view, like ScrollView.
ScrollView
Sorry, something went wrong.
No branches or pull requests
When we have a root view, it will overlap status bar. We have to manually set a
marginTop
to the view.The same issue happens when working with NavigationIOS, the
initialRoute
view will still need a top margin to have its content visible.Any options can deal with this issue?
The text was updated successfully, but these errors were encountered: