You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using ActionSheet in Android with a long list of items, the list should be scrollable and bounds of the modal should remain confined within the root container.
Actual behaviour
The modal height exceeds the height of the container enough that the top of the title is clipped by the top of the content container.
It may appear that the status bar is covering the top, but in reality the container is trimmed to the bottom of the spacebar, otherwise the top of the 'S' and 'C' would be visible under the status bar that has an alpha value on the color.
Is the bug present in both ios and android or in any one of them?
Android only, ios uses the built in ios actionsheet.
Any other additional info which would help us debug the issue quicker.
I already found a solution. Adding maxHeight: '100%' to the TouchableOpacity view will give the expected behavior. I will open a pull request to fix the issue.
The text was updated successfully, but these errors were encountered:
react-native, react and native-base version
Expected behaviour
When using ActionSheet in Android with a long list of items, the list should be scrollable and bounds of the modal should remain confined within the root container.
Actual behaviour
The modal height exceeds the height of the container enough that the top of the title is clipped by the top of the content container.
Steps to reproduce (code snippet or screenshot)
Screenshot of emulator/device
It may appear that the status bar is covering the top, but in reality the container is trimmed to the bottom of the spacebar, otherwise the top of the 'S' and 'C' would be visible under the status bar that has an alpha value on the color.
Is the bug present in both ios and android or in any one of them?
Android only, ios uses the built in ios actionsheet.
Any other additional info which would help us debug the issue quicker.
I already found a solution. Adding
maxHeight: '100%'
to the TouchableOpacity view will give the expected behavior. I will open a pull request to fix the issue.The text was updated successfully, but these errors were encountered: