React Native-如何仅捕获父级的onClick事件而不捕获子级

时间:2018-08-06 15:32:42

标签: react-native

当我单击图标时,我想播放视频,但是它不起作用。

<View>
    <TouchableOpacity>
        <WebView
            source={{
              uri: media.sourceUrl,
            }}
            style={{
              height,
              width,
              marginLeft: 10,
              marginRight: 10,
            }}
        />
        <Icon
          onPress={() => console.log("lolo")}
          name="logo-youtube"
          style={{ fontSize: 60,
            color: 'white',
            position: 'absolute',
            alignSelf: 'center',
            alignContent: 'center',
            opacity: 0.8,
          }}
        />
    </TouchableOpacity>
</View>

我想念什么?

0 个答案:

没有答案