1.4.3 • Published 1 year ago

@lowkeychat/react-native-gif v1.4.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-native-gif

Performant component for GIFs (significant performance increase and better memory usage on iOS). Caching is available for iOS.

v3.x.x

Updating from v2.x.x to v3.x.x might have some breaking changes due to migration from FLAnimatedImage to SDWebImage. Please create an issue or pull request if you notice any bugs.

Installation

npm install @lowkeychat/react-native-gif

or

yarn add @lowkeychat/react-native-gif

Then

npx pod-install

Usage

import GifImage from '@lowkeychat/react-native-gif';

// ...

<GifImage
  source={{
    uri:
      'https://media.tenor.com/images/1c39f2d94b02d8c9366de265d0fba8a0/tenor.gif',
  }}
  style={{
    width: 100,
    height: 100,
  }}
  resizeMode={'cover'}
/>;

Props

style

ImageResizeMode is an Enum for different image resizing modes, set via the resizeMode style property on Image components. For now the values are contain and cover. Please make an issue if any other (stretch, center, repeat) is needed.

TypeRequired
ViewStylefalse

resizeMode

Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to cover as a standard react-native's Image component.

  • cover: Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding).
  • contain: Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view (minus padding).

Please make a GitHub issue if any other (stretch, center, repeat) is needed.

TypeRequired
enum('cover', 'contain')false

source

The image source (either a remote URL or a local file resource).

TypeRequired
ImageURISourcetrue

paused

Determines if GIF should be paused

TypeRequiredDefault
booleanfalsefalse

quality

Determines quality (pixel size) of the GIF. Value between 0 - 1, where 1 is the best quality.

TypeRequiredDefault
numberfalse1

useCPU

Defaults to false. Which automatically adjust decoding between memory and CPU, by calculating current memory usage. If set to true, means without any buffer cache each of frames will be decoded and then be freed after rendering. Lowest memory usage but with the highest CPU usage.

TypeRequiredDefault
booleanfalsefalse

showLoadingIndicator

Defaults to false. Shows loading indicator which will be visible during image loading from network and stop automatically after loading finished.

TypeRequiredDefault
booleanfalsefalse

Feature Requests

Additional image props and methods can be exposed if needed. Please make required feature requests in GitHub issues.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT

1.4.3

1 year ago

1.4.2

1 year ago

1.4.1

2 years ago

1.4.0

2 years ago

1.3.0

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.0

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago