- 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,
},
}),
],
});