0

我有这张图片

古兰经图片

我希望它是这样的

古兰经图像黑暗

是否可以在本机反应中做到

4

2 回答 2

1

我想出了一种方法来使用 png 图像来做到这一点,你所要做的就是

<Image style={{ tintColor: "any color",}} />
于 2021-06-08T12:12:33.530 回答
0

将其包裹在 View 中并添加背景颜色样式。

<View style={styles.imageContainer}>
{...image here}
</View>

const styles = StyleSheet.create({
    imageContainer: {
        backgroundColor: 'blue'
    }
})
于 2021-06-08T02:27:17.150 回答