Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flow react native import image error cannot resolve module RelativeImageStub

I'm quite new to flow, I'm getting a flow error importing an image in react-native:

import EditIcon from '../../../../../assets/images/edit-icon.png';

<Image
   style={imageStyle}
   source={EditIcon}
/>

I get this error:

"cannot resolve module RelativeImageStub"

This is my flowconfig where I have the RelativeImageStub

module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
like image 388
Graeme Paul Avatar asked Jun 19 '18 10:06

Graeme Paul


1 Answers

Instead of matching the whole module name, you can use extension matcher.

Change:

module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'

To:

module.name_mapper.extension='\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)' -> 'RelativeImageStub'
like image 189
Renganatha Arunachalam Avatar answered Oct 18 '22 16:10

Renganatha Arunachalam