【发布时间】:2020-08-20 17:13:11
【问题描述】:
如何在 react native 中为 View 添加模糊,就像我们将其应用于 Image 或 BackgroundImage 一样。如果视图具有使用 rgba 的半透明背景...我也想为其添加模糊。
示例代码
<ImageBackground style={styles.bg}>
<View style={styles.content} />
</ImageBackground>
const styles = StyleSheet.create({
bg: {
width: “100%”,
height: “100%”
},
content:{
width: “70%”,
height: “70%”,
backgroundColor: “rgba(255,255,355,0.4)”,
alignSelf: “center”
}
})
【问题讨论】:
标签: react-native react-native-android react-native-ios react-native-flatlist react-native-navigation