Expo config plugin for Android drawables
npm install expo-drawable-assets```
bun i -d expo-drawable-assets
Config plugin for copying Android drawable assets into a React Native project.
Useful for Android Expo Router native tabs
You can find Material Design icon drawables here. (Icon -> Android tab -> Download)
Add the plugin to your Expo app config:
``
"plugins": [
[
"expo-drawable-assets",
"./assets/drawables"
]
]
Any assets in the specified path will be copied to the app/src/main/res/drawable` directory.
If you're on bare React Native you should probably just copy the assets manually...