Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
228 views
in Technique[技术] by (71.8m points)

javascript - how to use full screen background image svg in react native and one more svg in background svg

I am working in react native and I am trying to add fullscreen background SVG and one more SVG in background SVG. I used this package and I also try many solutions from google. I am able to add one SVG but don't know how to add other components to it.

import { View, ImageBackground } from 'react-native';
import { SvgXml } from 'react-native-svg';
import { splash_logo} from '../assets/svgImages';

<ImageBackground source={require("../assets/splash.png")} style={[{width: '100%', height: '100%'},styles.splash_container]}>
   <SvgXml xml={splash_logo}/>
</ImageBackground>

The above example is working fine but I want to use SVG in place of the png image. When I add SvgXml instead of ImageBackground then the outer SVG cover the full page and the inner SVG and any other components inside that don't show.

<SvgXml xml={Login_background}>
  <SvgXml xml={splash_logo}/>
<SvgXml/>
question from:https://stackoverflow.com/questions/65646574/how-to-use-full-screen-background-image-svg-in-react-native-and-one-more-svg-in

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...