Load image passed as props react native

前端 未结 7 1345
清歌不尽
清歌不尽 2021-01-04 20:02

When I am trying to load image from props i am getting the following error warning: failed prop type: invalid prop source supplied to image

7条回答
  •  别那么骄傲
    2021-01-04 20:42

    Using the below method gives error in react-native:

    
    

    Instead use:

    
    

    And pass the below code as imageUri prop from the Parent component.

    require('./public/images/image.png')
    

    It has worked for me and hope this will help others.

提交回复
热议问题