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
Ficus UI is a React Native UI library inspired by Chakra UI
6
+
7
+
## Requirements
8
+
9
+
This library now needs `react-native-gesture-handler` to be installed inside the React Native project.
10
+
If you use Expo Go then you have nothing to do as Gesture Handler is integrated inside Expo SDK.
11
+
But if you use a Bare React Native project, please follow those instructions in first : https://docs.swmansion.com/react-native-gesture-handler/docs/fundamentals/installation/
12
+
13
+
## Installation
14
+
15
+
With pnpm :
16
+
17
+
```sh
18
+
pnpm add react-native-ficus-ui
19
+
```
20
+
21
+
With npm :
22
+
23
+
```sh
24
+
npm install react-native-ficus-ui
25
+
```
26
+
27
+
With yarn :
28
+
29
+
```sh
30
+
yarn add react-native-ficus-ui
31
+
```
32
+
33
+
Then, install the pods for iOS :
34
+
35
+
```sh
36
+
cd ios && pod install
37
+
```
38
+
39
+
## Usage
40
+
41
+
You need to wrap your root component inside FicusProvider component from react-native-ficus-ui.
0 commit comments