Wojciech Lewicki
Wojciech Lewicki
## Description PR adding shared element transitions to `native-stack`. Please consider a draft for now since there is no `Android` implementation and only basic examples work on `iOS`. Most of...
## Description When the `fullScreenModal` is presented, the `FullWindowOverlay` is removed from native view hierarchy since the view receives `didMoveToWindow` with `nil` value. This behavior can be removed, but then...
## Description PR adding prop for disabling header insets on Android, which make the header subviews not responsive. They are present by default to mimic the behavior of iOS having...
## Description PR changing the order of updating the VCs of `native-stack` in order to first dismiss the modal and then push/pop normal screens. ## Screenshots / GIFs ### Before...
## Description Added an option to provide custom transitions between screens from JS. It requires setting `stackAnimation: 'custom'` and providing `animationSpec` on screen. ## Changes Added `stackAnimation: 'custom'` and `animationSpec`...
Applied https://developer.apple.com/forums/thread/660745 solution suggested by @julian-baumann to make the large header appear on the Screen load. Should resolve #649 and #645.
PR adding options exposed to the `Screen` component of `react-native-screens` in https://github.com/software-mansion/react-native-screens/pull/863. It gives the user the ability to control orientation and status bar management per screen of the navigator....
## Description PR adding support for `pointerEvents` behaviors in `FullWindowOverlay` component. ## Test code and steps to reproduce `Test1096.tsx` ## Checklist - [ ] Included code example that can be...
## Summary This PR resolves the potential problem of misconfiguration of components after being recycled. Some of them have custom, sometimes native (e.g. connected to VCs) logic that messes up...
## Summary: This PR introduces kind of the same API that is available on `iOS` for subscribing to view mutations (see https://github.com/facebook/react-native/blob/67384cf5a07662b5030c20cf666b0f10b402bf23/packages/react-native/React/Fabric/Mounting/RCTMountingTransactionObserving.h) but for `Android`. The concept is needed there...