Skip to content

Commit

Permalink
fix: clipped views when keyboard is closing
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhom committed Nov 17, 2024
1 parent 61473b5 commit 2320a81
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/bottomSheet/BottomSheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,6 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
configs: _providedAnimationConfigs,
overrideReduceMotion: _providedOverrideReduceMotion,
}),
overflow: 'hidden',
};
}, [
enableDynamicSizing,
Expand Down Expand Up @@ -1951,10 +1950,13 @@ const BottomSheetComponent = forwardRef<BottomSheet, BottomSheetProps>(
// animatedHandleGestureState,
// animatedContentGestureState,
animatedContainerHeight,
animatedContentHeightMax,
animatedSheetHeight,
animatedHandleHeight,
animatedContentHeight,
animatedFooterHeight,
animatedKeyboardHeight,
animatedKeyboardHeightInContainer,
// // keyboardHeight,
// isLayoutCalculated,
// isContentHeightFixed,
Expand Down
4 changes: 3 additions & 1 deletion src/components/bottomSheet/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ export const styles = StyleSheet.create({
left: 0,
right: 0,
},
contentContainer: {},
contentContainer: {
overflow: 'visible',
},
contentMaskContainer: {
overflow: 'hidden',
},
Expand Down

0 comments on commit 2320a81

Please sign in to comment.