We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expo is so popular, that I almost assume people will test it out with it, so here are the problems I found with expo for my two components:
change from import on top to require inline eg.
import Rectangle34Copy6 from 'sushi_images/Rectangle34Copy6.png' <Image source={React34Copy6} style={styles.Rectangle34Copy6} />
to
<Image source={require('./sushi_images/Rectangle34Copy6.png')} style={styles.Rectangle34Copy6} />
A Image can not have a child. e.g
<Image source={require('./sushi_images/Rectangle34Copy6.png')} style={styles.Rectangle34Copy6}> <Text style={styles.LeMeoSushiCopy2}>Le Meo Sushi</Text> </Image>
<Image source={require('./sushi_images/Rectangle34Copy6.png')} style={styles.Rectangle34Copy6} /> <Text style={styles.LeMeoSushiCopy2}>Le Meo Sushi</Text>
This should be tested more.
I have created the issue so that;
The text was updated successfully, but these errors were encountered:
@SindreSvendby Thanks. I don't use Expo very much, so I'll have to test each of them and try to figure out the best way to fix them.
Sorry, something went wrong.
No branches or pull requests
Expo is so popular, that I almost assume people will test it out with it, so here are the problems I found with expo for my two components:
Importing images
change from import on top to require inline
eg.
to
Children of Image
A Image can not have a child.
e.g
to
This should be tested more.
I have created the issue so that;
The text was updated successfully, but these errors were encountered: