This is a sample of displaying an image with ReactNative.
If you want to retrieve images from the Internet on iOS, you need to set up ATS, so be careful.
react-native: 0.56.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import {AppRegistry} from 'react-native'; | |
import { | |
StyleSheet, | |
ActivityIndicator, | |
View | |
} from 'react-native'; | |
import {name as appName} from './app.json'; | |
export class App extends Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<ActivityIndicator | |
size="large" | |
color="red" /> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
marginTop: 20 | |
}, | |
}); | |
AppRegistry.registerComponent(appName, () => App); | |