gpt4 book ai didi

reactjs - 在没有 npm 包的情况下 react 原生背景模糊

转载 作者:行者123 更新时间:2023-12-03 08:08:02 25 4
gpt4 key购买 nike

我正在使用动画 ScrollView 和 Modal。我需要右图所示模态上的模糊背景。我怎样才能将这个背景添加到这个模式中?我想要没有 npm 包的模糊效果。

<Modal transparent={true}>

2 1

最佳答案

你想要这个:https://reactnative.dev/docs/imagebackground

并使用组件属性blurRadius,例如:

import React from "react";
import { ImageBackground, StyleSheet, Text, View } from "react-native";

const image = { uri: "https://reactjs.org/logo-og.png" };

const App = () => (
<View style={styles.container}>
<ImageBackground source={image} blurRadius={5} resizeMode="cover" style={styles.image}>
<Text style={styles.text}>Inside</Text>
</ImageBackground>
</View>
);

const styles = StyleSheet.create({
container: {
flex: 1,
},
image: {
flex: 1,
justifyContent: "center"
},
text: {
color: "white",
fontSize: 42,
lineHeight: 84,
fontWeight: "bold",
textAlign: "center",
backgroundColor: "#000000c0"
}
});

export default App;

关于reactjs - 在没有 npm 包的情况下 react 原生背景模糊,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71589675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com