Skip to content

Releases: grahammendick/navigation

NavigationReactNative v4.0.0

01 Mar 10:36
Compare
Choose a tag to compare

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 to Scene component, mandatory when using the iOS tabs setup
  • #232 Accessed iOS title from getTitle function on State instead of reading sceneTitle 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 on State instead of reading sharedElements 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

26 Jan 11:43
Compare
Choose a tag to compare

New

  • #227 Retrieved Shared Elements from function attached to State (Android)

NavigationReactMobile v2.0.1

24 Jan 13:00
Compare
Choose a tag to compare

Fixed

  • a187304 Ensured the Shared Element navigation comes to rest

NavigationReactNative v3.6.0

17 Jan 14:07
Compare
Choose a tag to compare

New

  • #223 Supported customised Shared Element Transitions (Android)

NavigationReactNative v3.5.0

10 Jan 18:13
Compare
Choose a tag to compare

New

  • #222 Remapped Shared Elements when navigating back (Android)

NavigationReactNative v3.4.0

07 Jan 20:05
Compare
Choose a tag to compare

New

  • #220 Supported Shared Element Transitions on Android

NavigationReactNative v3.3.0

22 Aug 17:16
Compare
Choose a tag to compare

New

  • #215 Supported UI Bar Buttons on iOS

NavigationReactNative v3.2.0

14 Aug 08:41
Compare
Choose a tag to compare

New

  • #213 Supported deep linking

NavigationReactNative v3.1.1

27 Jul 15:30
Compare
Choose a tag to compare

Fix

Counted the UIViewControllers after the additions and removals (iOS)

NavigationReactNative v3.1.0

27 Jul 14:40
Compare
Choose a tag to compare

New

  • #210 Customised enter and exit Activity animations on Android
  • #211 Accepted dynamic navigation bar titles on iOS