npm react-native-edge-to-edge 1.8.0

latest release: 1.8.1
9 hours ago
  • Fix system bars reappearing after keyboard dismissal on Android API 27 (#105 - thanks to @bladerunner2020)
  • Export a dedicated typed function for Expo dynamic configuration (app.config.ts):
import type { ConfigContext, ExpoConfig } from "expo/config";
import edgeToEdge from "react-native-edge-to-edge/expo"; // use `require` in app.config.js

export default ({ config }: ConfigContext): ExpoConfig => ({
  // …
  plugins: [
    edgeToEdge({
      android: {
        parentTheme: "Default",
        enforceNavigationBarContrast: false,
      },
    }),
  ],
});

Don't miss a new react-native-edge-to-edge release

NewReleases is sending notifications on new releases.