gpt4 book ai didi

react-native - 如何更改 native 基础的主题?

转载 作者:行者123 更新时间:2023-12-04 04:20:52 24 4
gpt4 key购买 nike

我目前是 react native 的新手,并尝试使用 native base,该组件很好,但我坚持在 native base 中更改主题,而我知道如何使用 style 但并非所有样式都可以在 native base 中应用(例如在事件页脚选项卡中更改颜色)。即使可以自定义样式,我也希望像在文档中一样更改主题。但我无法克服这一点。

到目前为止,我已经尝试使用我的自定义主题并应用在我的组件中,但它没有改变。

我的工作区:
- react 原生 2.0.1
-本地基础 2.3.1

谢谢

最佳答案

您可以使用此代码并阅读 here想要查询更多的信息:

import React, { Component } from 'react';
import { Container, Content, Text, StyleProvider } from 'native-base';
import getTheme from './native-base-theme/components';
import material from './native-base-theme/variables/material';
​export default class ThemeExample extends Component {
render() {
return (
<StyleProvider style={getTheme(material)}>
<Container>
<Content>
<Text>
I have changed the text color.
</Text>
</Content>
</Container>
</StyleProvider>
);
}
}

关于react-native - 如何更改 native 基础的主题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46150451/

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