import { Image } from 'react-native'; <Image source={require('./assets/vmi.jpg')} style={{width: 40, height: 40 }} />
<Image source={{ width: 200, height: 300, uri: "https://picsum.photos/200/300", }} />
import { ImageBackground, StyleSheet, Text, View } from 'react-native'; //... <View style={styles.container}> <StatusBar style="auto" /> <ImageBackground source={require('./assets/tatra_hegy.jpg')} style={{width: '100%', height: '100%'}} > <Text>Valami</Text> </ImageBackground> </View> //...