Skip to content

Commit 93cf9fc

Browse files
committed
move overflow property
1 parent 6766c4e commit 93cf9fc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-actions-sheet",
3-
"version": "0.8.22",
3+
"version": "0.8.23",
44
"description": "A Cross Platform(Android & iOS) ActionSheet with a robust and flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.",
55
"main": "./dist/index.js",
66
"repository": {

src/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,6 @@ export default forwardRef<ActionSheetRef, ActionSheetProps>(
11151115
translateY: animations.translateY,
11161116
},
11171117
],
1118-
overflow: 'hidden',
11191118
}}>
11201119
{dimensions.height === 0 ? null : (
11211120
<Animated.View
@@ -1140,6 +1139,9 @@ export default forwardRef<ActionSheetRef, ActionSheetProps>(
11401139
? dimensions.height - keyboard.keyboardHeight
11411140
: dimensions.height,
11421141
},
1142+
{
1143+
overflow: 'hidden',
1144+
},
11431145
]}>
11441146
{drawUnderStatusBar ? (
11451147
<Animated.View

0 commit comments

Comments
 (0)