Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

expo/react-native-fade-in-image

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deprecated: replaced by expo-image

This library is deprecated. Use expo-image instead - it has this behavior built-in.


react-native-fade-in-image

Wrap Image components in <FadeIn> to have them fade in pleasantly when they finish loading.

Installation

npm i react-native-fade-in-image --save

Usage

import React from 'react';
import { Image } from 'react-native';
import FadeIn from 'react-native-fade-in-image';

const uri = 'https://d3lwq5rlu14cro.cloudfront.net/v1/AQ5jDS5SYyUkapWWEviV.png';

class FancyImage extends React.Component {
  render() {
    return (
      <FadeIn>
        <Image source={{ uri }} style={{ width: 162, height: 28 }} />
      </FadeIn>
    );
  }
}

props

  • style adds style to the image wrapper.
  • renderPlaceholderContent renders an element while loading the image, e.g. a spinner.
  • placeholderStyle adds style to the placeholder wrapper, default background color is #eee.

Example

See the example project source or try it out at https://exp.host/@community/fade-in-image-example

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published