Releases: grahammendick/navigation
Releases · grahammendick/navigation
NavigationReactNative v4.0.0
Fixed
- #231 Updated stale scene when peeking on iOS, e.g., fluently navigating from A → B → C to A → D → C
Changed
- #231 Added
tab
prop toScene
component, mandatory when using the iOS tabs setup - #232 Accessed iOS title from
getTitle
function onState
instead of readingsceneTitle
from navigation data. You can use the following to revert to the previous iOS title behaviour:
for(var key in stateNavigator.states) {
var state = stateNavigator.states[key];
state.getTitle(({ sceneTitle }) => sceneTitle;
}
- #232 Accessed Android shared elements from
getSharedElements
function onState
instead of readingsharedElements
from navigation data. You can use the following to revert to the previous Android shared elements behaviour:
for(var key in stateNavigator.states) {
var state = stateNavigator.states[key];
state.getSharedElements(({ sharedElements }) => sharedElements;
}
NavigationReactNative v3.7.0
New
- #227 Retrieved Shared Elements from function attached to
State
(Android)
NavigationReactMobile v2.0.1
Fixed
- a187304 Ensured the Shared Element navigation comes to rest
NavigationReactNative v3.6.0
New
- #223 Supported customised Shared Element Transitions (Android)
NavigationReactNative v3.5.0
New
- #222 Remapped Shared Elements when navigating back (Android)
NavigationReactNative v3.4.0
New
- #220 Supported Shared Element Transitions on Android
NavigationReactNative v3.3.0
New
- #215 Supported UI Bar Buttons on iOS
NavigationReactNative v3.2.0
New
- #213 Supported deep linking
NavigationReactNative v3.1.1
Fix
Counted the UIViewControllers
after the additions and removals (iOS)