React-native-reanimated-bottom-sheet: Strange space at the bottom when headerMode='none' with React Navigation

Created on 22 Jun 2020  路  3Comments  路  Source: osdnk/react-native-reanimated-bottom-sheet

Facing strange empty transparent space at the bottom when headerMode is set to 'none'. This screenshot is from the Example => Test.js file

I have tried setting height to 100% to the Animated.View used for renderContent
Can you point please me in right direction, what should I configure ?

Simulator Screen Shot - iPhone 11 Pro Max - 2020-06-22 at 09 02 45

Most helpful comment

I got the same issue this morning.

It's not a full and complete solution, but in my case I fixed a part of the problem by putting the BottomSheet outside the SafeAreaView. The other part was related to the dimensions of the header and the footer of my page.

All 3 comments

I got the same issue this morning.

It's not a full and complete solution, but in my case I fixed a part of the problem by putting the BottomSheet outside the SafeAreaView. The other part was related to the dimensions of the header and the footer of my page.

@blixit Thank you. Moving this outside the SafeArea It worked, like you said. Thanks as lot.

I had a similar problem. There was a huge empty space blocked (around half of the screen if the bottom sheet is opened to full screen).
The structure was like this:

<View style={{ flex: 1 }}>
  <View>
    <BottomSheet/>
    <View (with the background's content) />
  <View>
<View> 

I solved this problem by removing one layer:

<View style={{ flex: 1 }}>
  <BottomSheet/>
    <View (with the background's content) />
<View>

The removed view layer did not had any styles or settings so I honestly don't know why it was breaking the sheet. Hope it will help someone in the future. 馃槃

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Daavidaviid picture Daavidaviid  路  5Comments

lukebars picture lukebars  路  5Comments

Saad-Bashar picture Saad-Bashar  路  6Comments

praneeth-hiver picture praneeth-hiver  路  4Comments

ShaikIrfan1739 picture ShaikIrfan1739  路  3Comments