New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-native-image-fallback

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-image-fallback

Image loader component with fallback options for React Native apps

latest
Source
npmnpm
Version
2.0.2
Version published
Weekly downloads
129
-34.18%
Maintainers
0
Weekly downloads
 
Created
Source

React Native Image Fallback

Table of Contents

  • Introduction
  • Getting Started
  • Usage
  • Properties
  • Using a Custom Component

Introduction

React Native Image Fallback is a lightweight image component that supports fallback images for React Native apps. It is a drop-in replacement for the React Native Image component with the added feature of fallback images. This is useful when you want to display a placeholder image when the main image fails to load.

Getting Started

Installation

# Using npm
npm install react-native-image-fallback --save

# Using Yarn
yarn add react-native-image-fallback

Usage

import Image from 'react-native-image-fallback';

const IMAGE_URL = {uri: 'http://image.url'};
const FALLBACKS = [
  {uri: 'http://another.image.url'},
  require('./local/image/path'),
];

const App = () => <Image source={IMAGE_URL} fallback={FALLBACKS} />;

Properties

Image extends the React Native Image component, so all the <Image /> props will work. In addition, it supports the following props:

PropTypeDescription
sourceTImageSourceThe source image (REQUIRED)
fallbackTImageSource | TImageSource[]The fallback image(s). Can be a single item or an array
componentComponentAlternative component to use. Default: Image from React Native

TImageSource

TImageSource is a type that can be a require('') image file, or an image source object.

fallback

The fallback prop can be a single image source or an array of image sources. If the main image fails to load, the fallback image(s) will be used instead. The fallback images are used in the order they are provided.

Note: If an array of fallbacks is provided, the library relies on a stable reference to the array. If the reference changes, the fallback logic will reset and start over.

Using a Custom Component

Any component that has the same props as the React Native Image component can be used as a custom component. This is useful when you want to use a custom image component that has additional features or styling. For example, you can easily use a more performant image component like FastImage as a fallback.

import FastImage from 'react-native-fast-image';
import Image from 'react-native-image-fallback';

<Image component={FastImage} source={imageSource} fallback={fallbacks} />;

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Keywords

react-native

FAQs

Package last updated on 19 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts