GeekyAnts / GeekyAnts/NativeBase
"RNCSafeAreaProvider" was not found in the UIManager.
- Dominant language
- TypeScript
- Stars
- 20.4k
- Forks
- 2.4k
- PR merge metrics
- No merged PRs in 30d
Description
### Description
I was trying to integrate NativeBase with React Native 0.72.3
### CodeSandbox/Snack link
na
### Steps to reproduce
1. yarn add native-base react-native-svg@12.1.1 react-native-safe-area-context@3.3.2
2. updated App.tsx as given in the docs
```js
import {Box, NativeBaseProvider} from 'native-base';
import React from 'react';
const App = () => {
return (
NativeBase
);
};
export default App;
```
error:
### NativeBase Version
3.4.28
### Platform
- [ ] Android
- [ ] CRA
- [ ] Expo
- [ ] iOS
- [ ] Next
### Other Platform
react native cli
### Additional Information
3. also tried giving safeareaprovider as such and still received the same error
```js
import {Box, NativeBaseProvider} from 'native-base';
import React from 'react';
import {SafeAreaProvider} from 'react-native-safe-area-context';
const App = () => {
return (
NativeBase
);
};
export default App;
```
error

Contributor guide
Assessment
This issue has not been assessed yet.