How to set navigation bar on top on the screen?
You can set tabBarStyle like this:
tabBarStyle={ {
...Platform.select({
ios: {
top: 64,
},
android: {
top: 54,
},
}),
height: 65,
padding: 16,
}}
@sarovin property top helped me, thanks
Most helpful comment
You can set tabBarStyle like this: