Skip to content
This repository was archived by the owner on Jan 30, 2021. It is now read-only.

Repository files navigation

react-native-safe-area-view

⚠️This library is deprecated. It is no longer used in React Navigation and it has been succeeded by the excellentreact-native-safe-area-context. Please use react-native-safe-area-context instead, or you are likely to have a bad time.


This library provides automatic padding when a view intersects with a safe area (notch, status bar, home indicator).

Installation

💡 The latest release is currently marked as 1.1.1 and depends on react-native-safe-area-context@^0.7.3. To use react-native-safe-area-context@^1.0.0, you will need to install react-native-safe-area-view@2.0.0 - this currently has the next tag on npm.

In the Expo managed workflow:

expo install react-native-safe-area-view react-native-safe-area-context

In bare React Native projects:

yarn add react-native-safe-area-view react-native-safe-area-context

Next, you need to link react-native-safe-area-context. If you are using autolinking, run npx pod-install again. If not, follow these instructions. Then re-build your app binary.

Usage

First you need to wrap the root of your app with the SafeAreaProvider.

import*asReactfrom'react';import{SafeAreaProvider}from'react-native-safe-area-context';importMyAwesomeAppfrom'./src/MyAwesomeApp';exportdefaultfunctionApp(){return(<SafeAreaProvider><MyAwesomeApp/></SafeAreaProvider>);}

Now you can wrap components that touch any edge of the screen with a SafeAreaView.

importSafeAreaViewfrom'react-native-safe-area-view';exportdefaultfunctionMyAwesomeApp(){return(<SafeAreaViewstyle={{flex: 1}}><Viewstyle={{flex: 1}}><Text>
Look, I'm safe! Not under a status bar or notch or home indicator or
anything! Very cool
</Text></View></SafeAreaView>);}

forceInset

Sometimes you will observe unexpected behavior and jank because SafeAreaView uses onLayout then calls measureInWindow on the view. If you know your view will touch certain edges, use forceInset to force it to apply the inset padding on the view.

<SafeAreaViewforceInset={{top: 'always'}}><View><Text>Yeah, I'm safe too!</Text></View></SafeAreaView>

forceInset takes an object with the keys top | bottom | left | right | vertical | horizontal and the values 'always' | 'never'. Or you can override the padding altogether by passing an integer.

Accessing safe area inset values

Sometimes it's useful to know what the insets are for the top, right, bottom, and left of the screen. See the documentation for react-native-safe-area-context for more information.

About

⚠️ Deprecated: use the successor react-native-safe-area-context instead!

Resources

Stars

656 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages