我正在使用https://github.com/wix/react-native-calendars,我想在我的标题视图中有议程。像这样的东西:
<View style={{ flex: 1 ,backgroundColor: '#269BB9' }}>
<CustomHeader {...this.props} />
<AgendaDiary navigation={this.props.navigation}/>
</View>
我正在使用https://github.com/wix/react-native-calendars,我想在我的标题视图中有议程。像这样的东西:
<View style={{ flex: 1 ,backgroundColor: '#269BB9' }}>
<CustomHeader {...this.props} />
<AgendaDiary navigation={this.props.navigation}/>
</View>
尝试为视图提供一些高度或将 AgendaDiary 包装在具有一定高度的视图中。
如果您想要 CustomHeader 组件中的任何其他视图(如 AgendaDiary),您应该能够将 AgendaDiary 组件作为子组件传递给 CustomHeader 组件。例如
<CustomComponent style={styles.anyStyles}>
<AgendaDiary props={someProps} />
</CustomComponent>
让知道这是否有帮助!