From d7835e26da01a40a1e597cc0cc583ef657124f09 Mon Sep 17 00:00:00 2001 From: Tal Kol Date: Sun, 10 Apr 2016 11:50:18 -0700 Subject: [PATCH] Update NavigatorComparison.md Summary:Thanks for submitting a pull request! Please provide enough information so that others can review your pull request: (You can skip this if you're fixing a typo or adding an app to the Showcase.) Explain the **motivation** for making this change. What existing problem does the pull request solve? Prefer **small pull requests**. These are much easier to review and more likely to get merged. Make sure the PR does only one thing, otherwise please split it. **Test plan (required)** Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos if the pull request changes UI. Make sure tests pass on both Travis and Circle CI. **Code formatting** Look around. Match the style of the rest of the codebase. See also the simple [style guide](https://github.com/facebook/react-native/blob/master/CONTRIBUTING.md#style-guide). "nobody who uses this has stepped up to take ownership for it yet" - react-native-navigation is a rewrite which is a fully featured Closes https://github.com/facebook/react-native/pull/6888 Differential Revision: D3161511 fb-gh-sync-id: b3e0c1f6138fb40561cb542d8905bcc478f781cb fbshipit-source-id: b3e0c1f6138fb40561cb542d8905bcc478f781cb --- docs/NavigatorComparison.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/NavigatorComparison.md b/docs/NavigatorComparison.md index 80262d1a3..69a8c46b7 100644 --- a/docs/NavigatorComparison.md +++ b/docs/NavigatorComparison.md @@ -40,6 +40,7 @@ between the two. - Small, limited API makes it much less customizable than `Navigator` in its current form. - Development belongs to open-source community - not used by the React Native team on their apps. - A result of this is that there is currently a backlog of unresolved bugs, nobody who uses this has stepped up to take ownership for it yet. + - You may find an alternative in the community project [react-native-navigation](https://github.com/wix/react-native-navigation) which replaces `NavigatorIOS`. - Wraps UIKit, so it works exactly the same as it would on another native app. Lives in Objective-C and JavaScript. - Consequently, you get the animations and behavior that Apple has developed. - iOS only.