在react-native-swiper中激活捏缩放

时间:2019-04-30 10:32:22

标签: react-native imageview pinchzoom react-native-swiper

我正在使用react-native开发一个Android应用。在这种情况下,我使用的是程序包名称

  

react-native-swiper

在图像之间滑动。下面是我的代码。我想知道如何在其中激活收缩缩放。

      <View style={{ flexDirection: 'row', width: 200, height: 300 }}>

                        {/* <View style={{width: 200, height: 200, backgroundColor: 'green'}} /> */}


                        <View>
                          <Swiper style={{ width: 200, height: 500, marginLeft:20 }}>{
                            imageUrls.map((item, i) =>

                              <View>
                                <FullWidthImage source={{ uri: item }} key={i} />
                              </View>
                            )}</Swiper>
                        </View>

                      </View>

0 个答案:

没有答案