Skip to content

Commit e50b0f1

Browse files
committed
Fix package name
1 parent a5c3752 commit e50b0f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

versioned_docs/version-4.x/handling-iphonex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default createStackNavigator({
5252
To fix this issue you can apply safe area insets on your content. This can be achieved easily by using the `SafeAreaView` component from the `react-native-safe-area-context` library. Recall that `SafeAreaView` should not wrap entire navigators, just the content inside the screen.
5353

5454
```jsx
55-
import SafeAreaView from 'react-native-safe-area-view';
55+
import { SafeAreaView } from 'react-native-safe-area-context';
5656

5757
class MyHomeScreen extends Component {
5858
render() {

0 commit comments

Comments
 (0)