【发布时间】:2022-07-19 00:58:24
【问题描述】:
NativeBase docs say:
默认情况下,大多数组件都兼容暗模式。
但我没有看到这个。
比如这个<Input />:
import {FormControl, Input, ScrollView} from 'native-base';
function Form(): JSX.Element {
return (
<ScrollView>
<FormControl.Label>Description</FormControl.Label>
<Input placeholder="Placeholder" />
</ScrollView>
);
}
在亮模式和暗模式下看起来都一样:
(我用NativebaseProvider包裹了我的树。)
【问题讨论】:
标签: native-base