| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 3.7.0 source code.tar.gz | 2026-02-22 | 969.1 kB | |
| 3.7.0 source code.zip | 2026-02-22 | 1.0 MB | |
| README.md | 2026-02-22 | 476 Bytes | |
| Totals: 3 Items | 2.0 MB | 0 | |
-
Export a dedicated typed function for Expo dynamic configuration (
app.config.ts)::::ts import type { ConfigContext, ExpoConfig } from "expo/config"; import localize from "react-native-localize/expo"; // use
requirein app.config.jsexport default ({ config }: ConfigContext): ExpoConfig => ({ plugins: [ localize({ locales: ["en", "fr"], // or { android: ["en"], ios: ["en", "fr"] } }), ], });