Bundle images to the native iOS
Images.xcassets
asset catalog
When using Expo Router (or the underlying React Navigation library), you have the option to swap out the native header back image.
The recommended way to add a custom back image is via Expo's official expo-asset package. However, I've found that on iOS builds there is an FONC (Flash of Native Content) before the custom image is swapped in.
This config plugin bundles your images natively in your asset catalog, so they are available at build time for your app to use. No more FONC!
-
Install the
expo-native-asset
library:yarn add expo-native-asset
-
Add the desired assets to your project repo (we recommend in
assets
):|- assets/ |- images/ |- chevron-left.png |- chevron-left@2x.png |- chevron-left@3x.png |- chevron-right.png
-
Add the desired assets to your
app.json
(orapp.config.js
) file:{ "plugins": [ [ "expo-native-asset", { "assets": [ { "type": "imageset", // The plugin will automatically pick up your @2x and @3x files if they both exist "path": "./assets/images/chevron-left.png" }, { "type": "imageset", "path": "./assets/images/chevron-right.png" } ] } ] ] }
-
Rebuild your app as described in the "Adding custom native code" guide
-
Start using the newly defined asset in your code:
<Stack screenOptions={{ headerBackImageSource: { uri: "chevron-left", width: 20, height: 20 }, }}>
Check out our Contributing guide for more information on reporting issues, submitting feedback, or contributing code.
To set up the repository locally on your machine, follow these steps:
-
Install the project dependencies:
yarn
-
Create a new build:
yarn build
To test that the project works, use the example app in the example
directory:
-
In the root of this repo, run the build server:
yarn build
-
In the
example
directory, rerun the prebuild process:EXPO_DEBUG=1 expo prebuild --clean
-
Confirm the plugin works as expected!