如何在React Native Paper中将主题设置为黑暗主题?在我所有的屏幕中,所有的<View>
仍然有白色背景。
const theme = {
...DarkTheme,
colors: {
...DarkTheme.colors,
primary: '#2d3436',
accent: '#1C1C1C',
background : '#636e72'
}
};
render() {
return(
<PaperProvider theme={theme}>
<App />
</PaperProvider>
);
}
2条答案
按热度按时间oogrdqng1#
应用主题和提供程序级别不会更改所有视图。您必须在导出时使用“withTheme”,它将提供可用于访问颜色的主题 prop 。
如果您想对所有视图使用相同的主题,请创建一个定制的 Package 器组件,像上面那样设置颜色
kuuvgm7e2#
您可以使用react-navigation配置主题,而不是在每个屏幕/组件上添加额外的钩子。
https://callstack.github.io/react-native-paper/docs/guides/theming-with-react-navigation#passing-theme-with-providers