Browse Source

Added community packages to docs (#6167)

Co-authored-by: Guy Carmeli <guyca@users.noreply.github.com>
Luke Brandon Farrell 4 years ago
parent
commit
4a38202328
No account linked to committer's email address
2 changed files with 21 additions and 1 deletions
  1. 19
    0
      website/docs/community-libraries.mdx
  2. 2
    1
      website/sidebars.js

+ 19
- 0
website/docs/community-libraries.mdx View File

@@ -0,0 +1,19 @@
1
+---
2
+id: community-libraries
3
+title: Community libraries
4
+sidebar_label: Community libraries
5
+---
6
+
7
+React Native Navigation has an active community with a bunch of support libraries.
8
+
9
+[React Native Navigation Hooks](https://github.com/underscopeio/react-native-navigation-hooks) :
10
+A set of React hooks for React Native Navigation.
11
+
12
+[React Native Navigation Drawer Extension](https://github.com/lukebrandonfarrell/react-native-navigation-drawer-extension) :
13
+Drawer API built on top of React Native Navigation for iOS and Android. 
14
+
15
+[React Native Navigation Search Bar](https://github.com/lukebrandonfarrell/react-native-navigation-search-bar) :
16
+React Native Elements search bar with collapsible header built for React Native Navigation.
17
+
18
+[React Native Navigation Register Screens](https://github.com/karlmarxlopez/react-native-navigation-register-screens) : 
19
+Utility function to register array of screens instead of calling `Navigation.registerComponent` multiple times.

+ 2
- 1
website/sidebars.js View File

@@ -35,7 +35,8 @@ module.exports = {
35 35
     ],
36 36
     'Third party integration': [
37 37
       'third-party-react-context',
38
-      'third-party-mobx'
38
+      'third-party-mobx',
39
+      'community-libraries'
39 40
     ],
40 41
     Meta: [
41 42
       'meta-contributing'