import React from 'react'; import { ActivityIndicator, StyleSheet, View, } from 'react-native'; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', }, horizontal: { flexDirection: 'row', justifyContent: 'space-around', padding: 10, }, }); class App extends React.Component { render() { return ( // - size as a number is only valid on Android (actually crashes, though) // - color defaults to 'gray', supports #xxxx, rgb(), rgba(), hsl(), hsla() // - hidesWhenStopped only works on iOS. ); } } export default App;