January 2019
Intermediate to advanced
592 pages
14h 30m
English
import React, { Component } from 'react';import { StyleSheet, Text, View, TouchableOpacity} from 'react-native';import Realm from 'realm';
export default class App extends Component { realm; componentWillMount() { const realm = this.realm = new Realm({ schema: [ { name: 'User', properties: { firstName: 'string', lastName: 'string', email: 'string' } } ] }); } // Defined in later steps.}
Read now
Unlock full access