react-native-edge-to-edge

Effortlessly enable edge-to-edge display in React Native (formerly known as react-native-bars).

MIT License

Downloads
5.3K
Stars
452
Committers
4

react-native-edge-to-edge

Effortlessly enable edge-to-edge display in React Native, allowing your Android app content to flow seamlessly beneath the system bars.

Credits

This project has been built and is maintained thanks to the support from Expo.

Support

This library follows the React Native releases support policy. It is supporting the latest version, and the two previous minor series.

Motivations

Android 15

With the upcoming release of Android 15, Google is introducing a significant change: apps targeting SDK 35 will have edge-to-edge enforcement. Google is likely to mandate that app updates on the Play Store target SDK 35 starting on August 31, 2025. This assumption is based on the previous years' requirements following a similar timeline.

Currently, new React Native projects target SDK 34.

Immersive mode

Immersive mode allows you to hide the status and navigation bars, making it ideal for full-screen experiences. Currently, the built-in StatusBar component uses FLAG_FULLSCREEN, a flag that has been deprecated since Android 11.

Consistency

iOS has long used edge-to-edge displays, so adopting this design across all platforms ensures a consistent user experience. It also simplifies managing safe areas, eliminating the need for special cases specific to Android.

Installation

$ npm i -S react-native-edge-to-edge
# --- or ---
$ yarn add react-native-edge-to-edge

Expo

Add the library plugin in your app.json config file and create a new build:

{
  "expo": {
+   "plugins": ["react-native-edge-to-edge"]
  }
}

[!NOTE] This library is not yet supported in the Expo Go sandbox app.

Bare React Native

Edit your android/app/src/main/res/values/styles.xml file to inherit from the provided theme:

<resources>
- <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
+ <style name="AppTheme" parent="Theme.EdgeToEdge">
    <!-- … -->
  </style>
</resources>

Considerations

Third-party libraries

Many libraries expose options that you can set to account for the transparency of status and navigation bars. For example, the useHideAnimation hook in react-native-bootsplash has statusBarTranslucent and navigationBarTranslucent options, the useAnimatedKeyboard in react-native-reanimated has an isStatusBarTranslucentAndroid option, etc.

[!IMPORTANT] Until third-party libraries officially add support for react-native-edge-to-edge to set these options automatically, you may need to adjust these options to prevent interference with the library.

For library authors, we provide a lightweight package called react-native-is-edge-to-edge (note the -is-!), which checks whether react-native-edge-to-edge is installed, making it easy to update your library accordingly:

import { isEdgeToEdge } from "react-native-is-edge-to-edge";

if (isEdgeToEdge()) {
  // …do something
}

Keyboard management

Enabling edge-to-edge display disrupts basic Android keyboard management (android:windowSoftInputMode="adjustResize"), requiring an alternative solution. While KeyboardAvoidingView is a viable option, we recommend using react-native-keyboard-controller for its enhanced capabilities.

Safe area management

Effective safe area management is essential to prevent content from being displayed behind transparent system bars. To achieve this, we highly recommend using react-native-safe-area-context, a well-known and trusted library.

Modal component quirks

Status bar management has never worked effectively with the built-in Modal component (as it creates a Dialog with a Window instance distinct from MainActivity). A statusBarTranslucent prop was introduced, but it is insufficient because there is no equivalent for the navigation bar. Instead, we recommend using the react-navigation modals, which do not suffer from this issue, as they utilize react-native-screens and Fragment behind the scenes.

API

[!WARNING] The API is subject to change before reaching version 1.0.0.

<SystemBars />

A component for managing your app's system bars. This replace StatusBar, expo-status-bar and expo-navigation-bar (that uses a lot of now deprecated APIs).

import { SystemBars } from "react-native-edge-to-edge";

type SystemBarsProps = {
  // Sets the color of the status bar content (navigation bar adjusts itself automatically)
  // "auto" is based on current color scheme (light -> dark content, dark -> light content)
  style?: "auto" | "light" | "dark";
  // Hide system bars (the navigation bar cannot be hidden on iOS)
  hidden?: boolean | { statusBar?: boolean; navigationBar?: boolean };
};

const App = () => (
  <>
    <SystemBars style="light" />
    {/* … */}
  </>
);

SystemBars.pushStackEntry

const entry: SystemBarsEntry = SystemBars.pushStackEntry(
  props /*: SystemBarsProps */,
);

SystemBars.popStackEntry

SystemBars.popStackEntry(entry /*: SystemBarsEntry */);

SystemBars.replaceStackEntry

const entry: SystemBarsEntry = SystemBars.replaceStackEntry(
  entry /*: SystemBarsEntry */,
  props /*: SystemBarsProps */,
);
Package Rankings
Top 27.62% on Npmjs.org
Badges
Extracted from project README
mit licence npm version npm downloads
Related Projects