首页 > 解决方案 > 标题视图内的议程

问题描述

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

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

 </View>

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

标签: reactjsreact-nativereact-native-calendars

解决方案


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

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


推荐阅读