react-native-scrollable-tab-view 中嵌套了react-native-swiper产生的bug

前段时间用RN的时候遇到过这个问题用scrollable-tab-view(scrollableView)这个组件然后嵌套轮播swiper会出现,在scrollableView nitialPage={index}第index屏swiper中图片出不来,dom大致如下

render() {
return (
<ScrollableTabView
initialPage={1}
renderTabBar={false}>
<Swiper />
<Swiper />
<Swiper />
<Swiper />
<Swiper />
</ScrollableTabView>
);
}

第一个<Swiper />中的图片渲染不出来,没有找到直接解决办法,所以当index屏时把swiper放在ScrollableTabView外面,作为替换方案,有知道的可以指点一下