static propTypes = {
style: View.propTypes.style,
title: PropTypes.string,
titleView: PropTypes.element,
hide: PropTypes.bool,
statusBar: PropTypes.shape(StatusBarShape),
rightButton: PropTypes.element,
leftButton: PropTypes.element,
}
static defaultProps = {
statusBar: {
barStyle: 'light-content',
hidden: false,
},
}
老师,为什么这两个对象定义了却没有用到。那属性约束和默认属性设置是怎么起作用的?