0

我正在使用https://github.com/wix/react-native-calendars,我想在我的标题视图中有议程。像这样的东西:

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

 </View>

议程日记是我的议程。我怎样才能做到这一点。看那个例子: 在此处输入图像描述

4

2 回答 2

0

尝试为视图提供一些高度或将 AgendaDiary 包装在具有一定高度的视图中。

见:https ://github.com/wix/react-native-calendars/issues/388

于 2018-09-14T09:12:35.210 回答
0

如果您想要 CustomHeader 组件中的任何其他视图(如 AgendaDiary),您应该能够将 AgendaDiary 组件作为子组件传递给 CustomHeader 组件。例如

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

让知道这是否有帮助!

于 2018-07-31T08:57:52.140 回答