npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-remote-svg

v2.0.11

Published

Load svg images in react-native

Downloads

4,336

Readme

react-native-remote-svg

Image component that supports svg filetype in React Native.

Installation

Using npm or yarn:

$ yarn add react-native-remote-svg

This library depends on react-native-webview as peerDependency, which means you need to install the webview library and link it to RN project for this to work

$ yarn add react-native-webview # If you don't already have this
$ react-native link

Image component in react-native doesn't yet support svg file type. This package gives you an Image component that supports both svg and png file types.

It doesn't require any native code setup. No need to do any react-native link. Just import and use!

Breaking Changes:

This project follows semantic versioning. Here are the breaking changes:

  • v2.0.0
    • As of React Native 0.57, WebView has been decoupled and moved to a separate project. This update imports WebView from react-native-webview and can only be used in projects using RN 0.57 or later.

Usage:

You need to import Image from this package instead of from react-native

- import { Image } from 'react-native'
+ import Image from 'react-native-remote-svg'

and you can use this Image component like you normally would:

import Image from 'react-native-remote-svg';

<Image
  source={{ uri: 'https://example.com/my-pic.svg' }}
  style={{ width: 200, height: 532 }}
/>;

supports data uri as well:

import Image from 'react-native-remote-svg';

<Image
  source={{
    uri: `data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100px" height="100px"  viewBox="0 0 100 100">
      <ellipse data-custom-shape="ellipse" cx="50" cy="50" rx="50" ry="50" fill="green"  stroke="#00FF00" stroke-width ="2" />
    </svg>`,
  }}
  style={{ width: 100, height: 100 }}
/>;

Note: When you load an image from the internet, you need to specify width/height of the image (default to 100, 100).

When you load a local image, width/height are not mandatory:

<Image source={require('./image.svg')} />

You can load normal jpg/png images as well

<Image
  source={{ uri: 'https://example.com/my-other-pic.png' }
  style={{ width: 100, height: 120}}
/>

Feature parity:

Here are the list of react-native Image features that are supported:

  • [x] source
  • [x] style
  • [ ] blurRadius
  • [ ] onLayout
  • [ ] onLoad
  • [x] onLoadEnd
  • [ ] onLoadStart
  • [ ] resizeMode
  • [ ] onError
  • [ ] testID
  • [ ] resizeMethod
  • [ ] accessibilityLabel
  • [ ] accessible
  • [ ] capInsets
  • [ ] defaultSource
  • [ ] onPartialLoad
  • [ ] onProgress

The goal is to have full feature parity with react-native's Image and then add this component directly into react-native itself.

Issues

If you find a bug, please file an issue on our issue tracker on GitHub.