最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - TypeError: Image constructor: 'new' is required in ReactNative - Stack Overflow

programmeradmin2浏览0评论

The below code gives me the following error. What to do?

TypeError: Image constructor: 'new' is required

<Image
  style={{}}
  source={{
      uri: '.png',
        }}
/>

The below code gives me the following error. What to do?

TypeError: Image constructor: 'new' is required

<Image
  style={{}}
  source={{
      uri: 'https://www.google./images/branding/googlelogo/2x/googlelogo_color_92x30dp.png',
        }}
/>
Share Improve this question edited Jul 28, 2020 at 21:04 bad_coder 13k20 gold badges56 silver badges88 bronze badges asked Jul 28, 2020 at 12:12 DisplayNameDisplayName 811 silver badge4 bronze badges 1
  • Could you add some more of your code – Sachin Yadav Commented Jul 28, 2020 at 12:27
Add a ment  | 

2 Answers 2

Reset to default 9

Make sure you import Image from 'react-native'

import { Image } from 'react-native';

If you're getting this error from a Next.js app then make sure to add the following import statement:

import Image from 'next/image';
发布评论

评论列表(0)

  1. 暂无评论