【问题标题】:Image not displayed in ReactNative in JSJS 中的 React Native 中不显示图像
【发布时间】:2020-07-28 12:31:49
【问题描述】:
<Image
   style={{}}
   source={{
       uri: 'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png'
   }}
/>

屏幕上什么都没有显示

【问题讨论】:

标签: javascript reactjs


【解决方案1】:

为它添加样式

<Image
  style={{
    width: 200,
    height: 200,
    resizeMode: "center"
  }}
  source={{
    uri:
      "https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png"
  }}
/>

【讨论】:

    【解决方案2】:

    尝试设置样式中Image标签的宽高。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-02-07
      • 2016-11-02
      相关资源
      最近更新 更多