Search code examples
react-nativeshoutem

Remove Content from on top of Shoutem ui NavigationBar


When I use the Shoutem UI NavigationBar the content after is on top of the navigationbar. How can I move it down?


Solution

  • 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>