React-native-navigation: unexpected white space at top of the screen in android

Created on 11 Sep 2018  路  2Comments  路  Source: wix/react-native-navigation

1fb03061-d892-4811-a625-ae0f526f79f0

After adding navigation getting unexpected white at top of the screen in android. I hidden topbar even though getting topspace
Please help to solve this issue

Thanks in advance

Most helpful comment

Use drawBehind: true in the top bar options

All 2 comments

Use drawBehind: true in the top bar options

Thanks @hisothreed !

Example:

Navigation.setDefaultOptions({
topBar: {
visible: true,
drawBehind: true,
title: {
...props
},
....
});

Was this page helpful?
0 / 5 - 0 ratings