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
View takes up the whole screen. Cannot remove the blue background from the screen. Can anyone help ?
And gestures also works on the whole screen. So anyway to limit it's height ?
The text was updated successfully, but these errors were encountered:
Hello, to remove the blue background just give the prop backgroundColor={"transparent"}
For the gesture that takes the whole screen you can give it a marginBottom= screen height, but that's a hack, I'm actually looking for a better solution
And to control it's height, use the prop containerStyle
Example: <Swiper containerStyle={{ height: height / 2 + 60, {/* your desired height goes here,and don't forget to tweak the card height according to this* /} overflow: 'hidden', }} ...otherProps />
Hello, to remove the blue background just give the prop backgroundColor={"transparent"} For the gesture that takes the whole screen you can give it a marginBottom= screen height, but that's a hack, I'm actually looking for a better solution
And to control it's height, use the prop containerStyle Example: <Swiper containerStyle={{ height: height / 2 + 60, {/* your desired height goes here,and don't forget to tweak the card height according to this* /} overflow: 'hidden', }} ...otherProps />
You find a better solution to fixing the gesture handler taking up the whole screen?
View takes up the whole screen. Cannot remove the blue background from the screen. Can anyone help ?
And gestures also works on the whole screen. So anyway to limit it's height ?
The text was updated successfully, but these errors were encountered: