Giter Site home page Giter Site logo

bufgix / expo-native-asset Goto Github PK

View Code? Open in Web Editor NEW

This project forked from marathontvapp/expo-native-asset

0.0 0.0 0.0 890 KB

Bundle images to the native iOS asset catalog

Home Page: https://www.npmjs.com/package/expo-native-asset

JavaScript 6.22% Ruby 17.25% Objective-C 1.53% Java 42.35% TypeScript 17.91% Objective-C++ 14.21% Swift 0.53%

expo-native-asset's Introduction

expo-native-asset

Bundle images to the native iOS Images.xcassets asset catalog

Motivation

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!

Installation

  1. Install the expo-native-asset library:

    yarn add expo-native-asset
  2. Add the desired assets to your project repo (we recommend in assets):

    |- assets/
       |- images/
          |- chevron-left.png
          |- [email protected]
          |- [email protected]
          |- chevron-right.png
    
  3. Add the desired assets to your app.json (or app.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"
                   }
                ]
             }
          ]
       ]
    }
  4. Rebuild your app as described in the "Adding custom native code" guide

  5. Start using the newly defined asset in your code:

    <Stack
      screenOptions={{
        headerBackImageSource: { uri: "chevron-left", width: 20, height: 20 },
      }}>

Contributing

Check out our Contributing guide for more information on reporting issues, submitting feedback, or contributing code.

Setup

To set up the repository locally on your machine, follow these steps:

  1. Install the project dependencies:

    yarn
  2. Create a new build:

    yarn build

Testing

To test that the project works, use the example app in the example directory:

  1. In the root of this repo, run the build server:

    yarn build
  2. In the example directory, rerun the prebuild process:

    EXPO_DEBUG=1 expo prebuild --clean
  3. Confirm the plugin works as expected!

expo-native-asset's People

Contributors

joshpensky avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.