* initial commit
* Fix nested touchables in Overlay
When nesting Touchable components in an Overlay, under certain conditions, the outer most Touchable component consumed all touch events.
Fixes #5184
Co-authored-by: Yogev Ben David <yogev132@gmail.com>
Fix flickering FAB when changing bottom tabs (#6225)
* Fix flickering FAB when changing bottom tabs
Fab was instantiated with the default margin (16dp), without the containing screen's bottom inset. The caused the FAB to jump up when the screen appeared since it then received the correct bottom margins (16dp + bottom insets)
Fixes #5816
This commit somewhat consolidates how stack children are mounted.
On Android, until now, only the top child in a stack was mounted when the stack became visible or when setStackRoot() was called. When popping the stack the new current child would be mounted when it was attached. This caused flickering when popping the stack as the pop animation started before the child finished mounting.
Now all children will be mounted together after the top child is mounted :)
Co-authored-by: Yogev Ben David <yogev132@gmail.com>
When a menu is opened its resolved options are applied. These options set the enabled property of both left and right menus. If a menu is disabled, opening the other menu will unintentionally enable it when it is opened therefore we need to update the enabled properties of both menus in the actual SideMenu layout.
Closes #6182
Co-authored-by: Yogev Ben David <yogev132@gmail.com>
Fix updating button options with mergeOptions (#6219)
Updating button options with mergeOptions stopped working in 6.5.0. The regression was introduced by #6090. When updating buttons, RNN didn't take button options into account when checking if two buttons are equal, instead it checked only by button id.
closes #6205
Co-authored-by: Yogev Ben David <yogev132@gmail.com>
Fix showing Modal from TopBar components in RN 62 (#6199)
When showing React Native's Modal from a TopBar component - RNN mistakingly considered Modals as yellow boxes and removed them. Apparently this error surfaced in RN62
Consume currentTabId and currentTabIndex after they are applied (#6169)
If currentTabId or currentTabIndex were declared in default options - the specified tab was reselected each time options were applied.
Co-authored-by: Yogev Ben David <yogev132@gmail.com>
Implement rotate animation for shared element transition (#6144)
This commit adds support for animating rotate/rotationZ animation during shared element transition.
It also...
* Removes ClipBoundsAnimator - Not sure why I reintroduced it
* Sets pivotX and pivotY only if needed
* Removes "Preview" button in Navigation tab from Android
* Delete ClipBoundsAnimator
This commit adds support to the startDelay option in shared element transitions on Android. It also fixes image scale transition which only animated the image's scale type, but not its bounds.