【发布时间】:2021-03-30 02:38:09
【问题描述】:
我想在我的组件内的样式表创建函数中使用我的 react native paper 主题中的颜色。这是我的代码
import { StyleSheet, Text, View } from 'react-native';
import { useTheme } from 'react-native-paper';
const Home = () => {
const { colors } = useTheme();
return (
<View style={[styles.container, { backgroundColor: colors.background }]}>
<Text>Home Page</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
export default Home;
我想在样式表中使用 backgroundColor: "#fff" 来引用来自 useTheme 挂钩的 colors.background。这可能吗?
【问题讨论】:
-
您可以在 Home 功能/组件中使用样式表
标签: react-native themes react-native-paper