-
-
Save DrMundo0/c20bc48ade72664f9c89 to your computer and use it in GitHub Desktop.
Revisions
-
ryanflorence created this gist
Jan 31, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,73 @@ 'use strict'; var React = require('react-native'); var { Bundler, StyleSheet, Text, TouchableHighlight, View, ScrollView, TextInput } = React; var ChecklistApp = React.createClass({ getInitialState () { return { items: [{body: 'sour cream'}] }; }, renderItems () { return this.state.items.map((item) => { return <Text style={styles.item}>{item.body}</Text>; }); }, handleSubmit (event) { var item = { body: event.nativeEvent.text }; var items = this.state.items; items.unshift(item); this.setState({ items }); }, render() { return ( <View style={{marginTop: 20}}> <Text>Checklist</Text> <TextInput style={styles.input} autoFocus={true} onSubmitEditing={this.handleSubmit} /> <View style={styles.list}> {this.renderItems()} </View> </View> ); } }); var styles = { input: { height: 26, borderWidth: 0.5, borderColor: '#0f0f0f', padding: 4, fontSize: 13, }, list: { top: 0, bottom: 100, backgroundColor: '#eeeeee', }, item: { padding: 10 } }; Bundler.registerComponent('ChecklistApp', () => ChecklistApp); module.exports = ChecklistApp;