2017-06-21 63 views
1

我只是想知道,在React Native中是否有可能創建一個垂直疊加層;因此,我的意思是在一個頁面上,當向下滑動時,一個覆蓋層下來,覆蓋頁面,上面有各種信息(滑動時相同,底層覆蓋層)。我想首先使用react-native-swiper,但是垂直刷卡與Android不兼容。所以如果有人有另一種解決方案可以提供,請成爲我的客人!謝謝React Native - 你如何創建一個垂直覆蓋?

回答

0

檢查react-native-parallax-view希望這可以幫助你。

編輯

例如:

return (
    <View style={[{ flex: 1 }]}> {/* add parent container and then ParallaxView as specified in documentation */} 
     <ParallaxView 
      backgroundSource={require('image!backgroundImage')} 
      windowHeight={300} 
      header={(
       <Text style={styles.header}> 
        Header Content 
       </Text> 
      )} 
      scrollableViewStyle={{ backgroundColor: 'red' }} 
      > 
      <View> 
      // ... scrollview content 
      </View> 
     </ParallaxView> 
    </View> 
); 
+0

謝謝,我現在要檢查! – BrtD

+0

嘿,你有沒有關於如何使它工作的例子?我遇到了一些麻煩,我似乎無法在網上找到一些明確的例子。 – BrtD