File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ React Native CommandBar was built as a wrapper around [CommandBarIOS](https://gi
12
12
13
13
## Installation
14
14
15
+ ** Minimum iOS Version:** 13.0
16
+ ** Minimum Android Version:** 28
17
+
15
18
``` sh
16
19
yarn add @commandbar/react-native
17
20
```
@@ -46,6 +49,24 @@ const MyComponent = () => {
46
49
};
47
50
```
48
51
52
+ ### Open HelpHub Bottom Sheet to a specific Article
53
+
54
+ ``` jsx
55
+ import { Button , View } from ' react-native' ;
56
+ import { CommandBar } from ' @commandbar/react-native' ;
57
+
58
+ const MyComponent = () => {
59
+ return (
60
+ < View>
61
+ < Button
62
+ title= " Open Support Article"
63
+ onPress= {() => CommandBar .openHelpHub ({ orgId: ' your_org_id' }, 123456 )}
64
+ / >
65
+ < / View>
66
+ );
67
+ };
68
+ ```
69
+
49
70
### Render a HelpHub View
50
71
51
72
``` jsx
You can’t perform that action at this time.
0 commit comments