我正在使用https://github.com/wix/react-native-calendars,并且希望在标题视图中包含议程。像这样:
<View style={{ flex: 1 ,backgroundColor: '#269BB9' }}>
<CustomHeader {...this.props} />
<AgendaDiary navigation={this.props.navigation}/>
</View>
答案 0 :(得分:0)
如果您希望CustomHeader组件内部有其他视图(如AgendaDiary),则应该能够将AgendaDiary组件作为子项粘贴到CustomHeader组件。例如
<CustomComponent style={styles.anyStyles}>
<AgendaDiary props={someProps} />
</CustomComponent>
让我们知道是否有帮助!