ImageBackground 拍摄一张图片,我能够添加具有图片和一些文本的子视图。但是,我想要的是像旋转图像一样的背景工作,而子视图保持原样反应本机。有没有办法做到这一点?
我现在拥有的:
<ImageBackground style= {styles.headerBackground} source={require('./img/headerBg.jpg')}>
<View style={styles.top}>
<Avatar
small
rounded
icon={{name: 'menu'}}
onPress={() => console.log("Works!")}
activeOpacity={0.7}
/>
</View>
<View style = {styles.header}>
<Avatar
large
source={require('./img/profBg.jpg')}
avatarStyle={{ borderWidth: 3, borderColor: 'white', borderStyle:'solid' }}
onPress={() => console.log("Works!")}
activeOpacity={0.7}
/>
<Text style={styles.name}>Name</Text>
<Text style={styles.message}> Personal message</Text>
</View>
</ImageBackground>
我不想在背景中有一张图像,而是想要旋转/滑动图像。有人可以帮忙吗?