Gathering detailed insights and metrics for react-native-svg-uri-falker
Gathering detailed insights and metrics for react-native-svg-uri-falker
Gathering detailed insights and metrics for react-native-svg-uri-falker
Gathering detailed insights and metrics for react-native-svg-uri-falker
Render SVG images in React Native from an URL or static file
npm install react-native-svg-uri-falker
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
142 Commits
2 Forks
2 Branches
1 Contributors
Updated on Oct 18, 2019
Latest Version
1.3.4
Package Id
react-native-svg-uri-falker@1.3.4
Unpacked Size
52.86 kB
Size
38.63 kB
File Count
8
NPM Version
6.9.0
Node Version
12.4.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
4
Render SVG images in React Native from an URL or a static file. This is a Fork of https://github.com/vault-development/react-native-svg-uri
This was tested with RN 0.61.2 and react-native-svg 9.11.1 (depends on this library) react-native-svg
Not all the svgs can be rendered, if you find problems fill an issue or a PR in order to contemplate all the cases
Install library from npm
1npm install react-native-svg-uri-falker --save
Link library react-native-svg
1react-native link react-native-svg # not react-native-svg-uri-falker !!!
Prop | Type | Default | Note |
---|---|---|---|
source | ImageSource | Same kind of source prop that <Image /> component has | |
svgXmlData | String | You can pass the SVG as String directly | |
fill | Color | Overrides all fill attributes of the svg file | |
fillAll | Boolean | Adds the fill color to the entire svg object |
Here's a simple example:
1import SvgUri from 'react-native-svg-uri-falker'; 2 3const TestSvgUri = () => ( 4 <View style={styles.container}> 5 <SvgUri 6 width="200" 7 height="200" 8 source={{uri:'http://thenewcode.com/assets/images/thumbnails/homer-simpson.svg'}} 9 /> 10 </View> 11);
or a static file
1<SvgUri width="200" height="200" source={require('./img/homer.svg')} />
This will render:
npm i
npm test
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More