如何在图像上显示相机图标

时间:2019-09-24 05:32:20

标签: react-native react-native-android react-native-image

 <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>

我要在此图像上显示“相机”图标:

like snapshot image

我想在照片上显示相机图标以上传像这样的新图像:enter image description here,我该如何显示相机以上传另一张照片。

1 个答案:

答案 0 :(得分: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>