我正在使用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>