标题视图内的议程

时间:2018-07-31 08:32:23

标签: reactjs react-native react-native-calendars

我正在使用https://github.com/wix/react-native-calendars,并且希望在标题视图中包含议程。像这样:

 <View style={{ flex: 1 ,backgroundColor: '#269BB9' }}>
          <CustomHeader {...this.props} />
          <AgendaDiary navigation={this.props.navigation}/>

 </View>

AgendaDiary是我的议程。我怎样才能做到这一点。看那个例子: enter image description here

1 个答案:

答案 0 :(得分:0)

如果您希望CustomHeader组件内部有其他视图(如AgendaDiary),则应该能够将AgendaDiary组件作为子项粘贴到CustomHeader组件。例如

<CustomComponent style={styles.anyStyles}>
 <AgendaDiary props={someProps} />
</CustomComponent>

让我们知道是否有帮助!