我有这张图片
我希望它是这样的
是否可以在本机反应中做到
我想出了一种方法来使用 png 图像来做到这一点,你所要做的就是
<Image style={{ tintColor: "any color",}} />
将其包裹在 View 中并添加背景颜色样式。
<View style={styles.imageContainer}>
{...image here}
</View>
和
const styles = StyleSheet.create({
imageContainer: {
backgroundColor: 'blue'
}
})