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
Fixed pan responder behavior for the bottom sheet variant to prevent gesture conflicts with child interactive elements (buttons, pressables)
Previously, the capture phase would immediately claim gestures on touch start, which could block taps on child elements like buttons inside the bottom sheet
Now the pan responder only claims gestures in the bubble phase, allowing child components to handle their own touch events first
Swipe-to-dismiss still works as expected when touching empty space or the drag handle
Improvements
StyleProp Type Flexibility
Updated style prop types across 38+ components to use StyleProp<ViewStyle> and StyleProp<TextStyle> instead of ViewStyle and TextStyle directly
This allows passing arrays, false, null, undefined, or registered style references as style values — matching React Native's standard style prop pattern