January 2019
Intermediate to advanced
592 pages
14h 30m
English
import React from 'react';import { Text, StyleSheet, SafeAreaView,} from 'react-native';import ContactList from './ContactList';
const App = () => ( <SafeAreaView style={styles.main}> <Text style={styles.toolbar}>Contacts</Text> <ContactList style={styles.content} /> </SafeAreaView>);const styles = StyleSheet.create({ main: { flex: 1, }, toolbar: { backgroundColor: '#2c3e50', color: '#fff', fontSize: 22, padding: 20, textAlign: 'center', }, content: { padding: 10, flex: 1, },});export default App; ...Read now
Unlock full access