0
 <View
        style={{
          borderRadius: 130 / 2,
          borderColor: '#000',
          backgroundColor: '#f89',
          height: 130,
          width: 130,
        }}>
        <Image
          source={{uri: 'https://i.imgur.com/G34Qbpv.jpg'}}
          style={{
            height: 130,
            width: 130,
            borderRadius: 130 / 2,
            zIndex: 0,
          }}
        />
        <View
          style={{
            justifyContent: 'center',
            alignItems: 'center',
            top: 90,
            backgroundColor: '#0f0',
            zIndex: 1,
          }}>
          <Icon
              name="camera" 
              size={30} />
        </View>
      </View>

我想在这张图片上显示相机图标:

像快照图像

我想在图片上显示相机图标以上传像这样的新图像图像:在此处输入图像描述,我该如何做这个显示相机来上传另一张图片。

4

1 回答 1

0

试试这个 你忘了指定位置

 <View
          style={{
            justifyContent: 'center',
            alignItems: 'center',
            top: 90,
            right : 0,
            position : 'absolute',
            backgroundColor: '#0f0',
            zIndex: 1,
          }}>
          <Icon
              name="camera"
              enter code heresize={30} />
        </View>
于 2019-09-24T07:14:55.447 回答