What is the use of SafeAreaProvider?
I didn't understand the github documentation https://github.com/th3rdwave/react-native-safe-area-context.
For what i have to use it ? SafeAreaView makes a nice job...
Even if SafeAreaProvider must be used with React-navigation:
<SafeAreaView>
<SafeAreaProvider>
<NavigationContainer>
...
</NavigationContainer>
</SafeAreaProvider>
</SafeAreaView>
I do not see its use...

