I want to show svg files (I have bunch of svg images) but the thing I couldn\'t find the way to show. I tried to use Image and Use componen
import React from 'react'
import SvgUri from 'react-native-svg-uri';
export default function Splash() {
return (
{/* provided the svg file is stored locally */}
{/* if the svg is online */}
Text
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
},
logoText: {
fontSize: 50
}
});