我正在使用tcomb
在其中构建一个表单react-native
,我的表单中的一个字段是birthDate: t.maybe(t.Date)
,但它似乎没有样式
const formRegistration = t.struct({
// other fields
birthDate: t.maybe(t.Date)
});
我还添加config
了options
:
const options = {
fields : {
birthDate: {
label: 'Birth Date',
mode: 'date',
config: {
format: (date) => myFormatFunction('DD MM YYYY', date),
dialogMode: 'spinner'
}
}
}
}
};