File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,34 @@ https://github.com/user-attachments/assets/fbdd9ce2-f4b9-4d0c-bd91-2e62bb422d69
17
17
yarn add react-native-bottom-tabs
18
18
```
19
19
20
+ If you use React Native version 0.75 or lower:
21
+
22
+ - For ` @react-native-community/cli ` users, open Podfile in ios folder and change minimum iOS version to ` 14.0 ` before ` pod install `
23
+
24
+ ``` patch
25
+ - platform :ios, min_ios_version_supported
26
+ + platform :ios, '14.0'
27
+ ```
28
+
29
+ - For Expo users, install ` expo-build-properties ` , open app.json file and update ` deploymentTarget ` for ` ios ` as below
30
+
31
+ ``` json
32
+ {
33
+ "expo" : {
34
+ "plugins" : [
35
+ [
36
+ " expo-build-properties" ,
37
+ {
38
+ "ios" : {
39
+ "deploymentTarget" : " 14.0"
40
+ }
41
+ }
42
+ ]
43
+ ],
44
+ }
45
+ }
46
+ ```
47
+
20
48
## 📖 Documentation
21
49
22
50
### Usage with React Navigation
You can’t perform that action at this time.
0 commit comments