When I use the Shoutem UI NavigationBar the content after is on top of the navigationbar. How can I move it down?
Currently this pattern seems to be the best option
<Screen
style={{ paddingTop: 70 }}
>
<NavigationBar
centerComponent={<Title>Title</Title>}
/>
<Title>Content now below NavigationBar</Title>
</Screen>