You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/2019-10-17-react-navigation-native.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -35,8 +35,8 @@ After years of growing development, we need to admit that we’re not always abl
35
35
36
36
Thanks to the great work of Krzysztof Magiera for [React Native Screens](https://github.com/kmagiera/react-native-screens) library now we can use truly native components instead of JS replicas.
<imgsrc="/assets/blog/android-native-stack.gif"height="530"alt="Native Stack on Android"/>
39
+
<imgsrc="/assets/blog/ios-native-stack.gif"height="530"alt="Native Stack on iOS"/>
40
40
41
41
We believe you will find it useful in your projects and strongly encourage you to get acquainted with our [documentation](https://github.com/kmagiera/react-native-screens/native-stack). Things that I’m the most excited about are iOS header animations!
Copy file name to clipboardExpand all lines: blog/2019-11-04-using-react-navigation-5-with-ui-kitten.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The new React Navigation comes with several significant improvements such as [im
20
20
21
21
The UI Kitten team started actively using React Navigation alpha and we're proud to announce the full compatibility to the new React Navigation API. In this guide, we won't consider how to implement all of the boilerplate stuff like auth screens. Instead, we will learn how to navigate between screens using Drawer, Bottom Tabs, Top Tabs, and Stack navigators to build a TODO-App. Furthermore, we'll demonstrate using React Navigation with UI Kitten components.
Now you can modify props of Auth screens props by adding types to make your autocomplete and IntelliSense work. For more complex examples, consider reading [type-checking](/docs/typescript) doc or reviewing [complete demo application sources](https://github.com/artyorsh/react-navigation-ex-demo/tree/complete-exmaples).
We can open a drawer with a swipe gesture, it looks very smooth. However, the UI doesn't look very impressive so let's add more content to the drawer to make it look just like in the final version.
When we check the screen of the phone now, we will see a nice looking, material bottom navigation. What's more, Stack Navigator integrates nicely with Tab.Navigator and we can still navigate to the tweet `Details` screen.
<img src="/assets/blog/using-react-navigation-5-with-paper/fab.gif" height="480" alt="React Native Paper's FAB with Bottom Tabs" />
753
753
754
754
As you can see on the gif, the FAB button works in the same way as in a Twitter app.
755
755
What's more, it even animates icon change properly even though we haven't implemented it. That's the behavior we get from React Native Paper's FAB out of the box.
@@ -927,7 +927,7 @@ Firstly, we get a current theme using `useTheme` hook from Paper. This means we
927
927
You should be able to toggle a switch now and both `Provider` from Paper and `NativeNavigationContainer` from React Navigation will automatically apply correct colors to the components.
Copy file name to clipboardExpand all lines: blog/2020-02-06-react-navigation-5.0.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -112,8 +112,8 @@ You don't need to use Redux in your apps for this to work and it works without a
112
112
113
113
Traditionally, we have written our navigators in JavaScript for greater customizability. It fits a lot of use cases, but sometimes you want the exact native feel and the performance of native navigation. Now, we have added a new native stack navigator that uses native navigation primitives for navigation using the [`react-native-screens`](https://github.com/kmagiera/react-native-screens) library. Under the hood, it just uses native components which might be obvious choice for native development and might be a good pick in the most cases.
Copy file name to clipboardExpand all lines: blog/2020-05-16-web-support.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ URL integration isn't enough to have proper web support. The navigators also nee
81
81
82
82
The first change is using anchor tags. When you use built-in navigators such as drawer navigator and tab navigator, they render anchor tags for the drawer and tab items respectively when you have linking configured. This means that they behave the same as normal links on the web.
Copy file name to clipboardExpand all lines: src/pages/help.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Resources to get help with React Navigation.
4
4
hide_table_of_contents: true
5
5
---
6
6
7
-
# Need help?
7
+
##Need help?
8
8
9
9
If you've encountered a bug with React Navigation, please [post an issue](https://github.com/react-navigation/react-navigation/issues) and be sure to fill out the issue template.
This package doesn't integrate with React Navigation. If you want to integrate the tab view with React Navigation's navigation system, e.g. want to show screens in the tab bar and be able to navigate between them using `navigation.navigate` etc, use [Material Top Tab Navigator](material-top-tab-navigator.md) instead.
This package doesn't integrate with React Navigation. If you want to integrate the tab view with React Navigation's navigation system, e.g. want to show screens in the tab bar and be able to navigate between them using `navigation.navigate` etc, use [Material Top Tab Navigator](material-top-tab-navigator.md) instead.
0 commit comments