navigation

Scene-Based Navigation for React and React Native

APACHE-2.0 License

Downloads
3.5K
Stars
576
Committers
19

Bot releases are visible (Hide)

navigation - NavigationReact v4.4.0

Published by grahammendick over 2 years ago

Added

  • #588 Supported React 18
navigation - Navigation v6.1.0

Published by grahammendick over 2 years ago

Added

  • #588 Supported React 18
navigation - NavigationReactNative v8.8.2

Published by grahammendick over 2 years ago

Fixed

  • fa198b8 Prevented error when destructuring Scene data
navigation - NavigationReactNative v8.8.1

Published by grahammendick over 2 years ago

Fixed

  • #585 Prevented blank screen when navigations and animations overlap
  • #586 Re-rendered a refreshed current scene whenever the NavigationStack re-renders
  • #587 Prevented crumb animation when replacing scenes (Android)
navigation - NavigationReactNative v8.8.0

Published by grahammendick over 2 years ago

Added

  • #583 Supported labelVisibilityMode on primary TabBar (Android). Thanks @SourceErr0r
navigation - NavigationReactMobile v3.7.0

Published by grahammendick over 2 years ago

Added

  • #581 Supported different durations per scene animation

Fixed

  • #581 Supported a duration of 0 for scene animation
  • #581 Smoothed the animation of a delayed shared element render
navigation - NavigationReactNativeWeb v1.0.1

Published by grahammendick over 2 years ago

Fixed

  • #578 Added an accessibility label to the navigation button in the NavigationBar
navigation - NavigationReactNative v8.7.3

Published by grahammendick over 2 years ago

Fixed

  • #578 Added an accessibility label to the navigation button in the NavigationBar (Android)
navigation - NavigationReactNative v8.7.2

Published by grahammendick over 2 years ago

Fixed

  • #574 Prevented flash when opening Modal containing a NavigationStack (Android)
navigation - NavigationReactMobile v3.6.4

Published by grahammendick over 2 years ago

Fixed

  • #571 Smoothed navigation animation when new scene renders slowly
navigation - Navigation v6.0.0

Published by grahammendick over 2 years ago

Changed

  • #567 Stayed on the same scene when refresh navigating

Migration

This release changes the behaviour of refresh navigation on States with trackCrumbTrail set to true. If you aren't using this then you can upgrade without any migration step.

Refresh navigation now stays on the same scene instead of pushing a new one onto the stack. The following used to create the stack A → A but it now creates the stack A.

stateNavigator.navigate('A');
stateNavigator.refresh();
  1. If you're using refresh navigation with truncateCrumbTrail to stay on the same scene, you can delete your truncateCrumbTrail function.
  2. If you're using refresh/RefreshLink to repeat a scene in the stack then change to navigate/NavigationLink instead.
navigation - NavigationReactMobile v3.6.3

Published by grahammendick over 2 years ago

Fixed

  • #566 Prevented rendering scenes while animating
navigation - NavigationReactMobile v3.6.2

Published by grahammendick over 2 years ago

Fixed

  • #565 Prevented wrong scene showing during unmount
navigation - NavigationReactMobile v3.6.1

Published by grahammendick almost 3 years ago

Fixed

  • #564 Went back in browser history until the right scene is reached
navigation - Navigation v5.5.1

Published by grahammendick almost 3 years ago

Fixed

  • #563 Added to history whenever the stack changes
navigation - NavigationReactNativeWeb v1.0.0

Published by grahammendick almost 3 years ago

Added

  • #555 Re-implemented navigation-react-native for React Native Web
navigation - NavigationReactMobile v3.6.0

Published by grahammendick almost 3 years ago

Added

  • #557 Kept browser history in step with the stack when navigating back
navigation - NavigationReactMobile v3.5.2

Published by grahammendick almost 3 years ago

Fixed

  • #556 Re-rendered the current Scene whenever the NavigationStack re-renders. Thanks @salockhart
navigation - NavigationReactNative v8.7.1

Published by grahammendick almost 3 years ago

Fixed

  • #556 Re-rendered the current Scene whenever the NavigationStack re-renders. Thanks @salockhart
navigation - NavigationReactMobile v3.5.1

Published by grahammendick almost 3 years ago

Fixed

  • #550 Prevented Suspending during SSR. Thanks @maman