Skip to content

Instantly share code, notes, and snippets.

@antonderegt
Created May 6, 2018 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonderegt/3f80cf29b005f0a90cf4813453d26c6d to your computer and use it in GitHub Desktop.
Save antonderegt/3f80cf29b005f0a90cf4813453d26c6d to your computer and use it in GitHub Desktop.
Step 3: Making the form pretty, App.js
import React, { Component } from 'react';
import {
StyleSheet,
View,
} from 'react-native';
import {
Text,
Item,
Label,
Input,
Button,
} from 'native-base';
import Form from 'react-native-form'
export default class App extends Component{
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<View style={styles.container}>
<Text style={styles.title}>
Sell your SOUL to the devil
</Text>
<Text style={styles.text}>
All you have to do is sign here
</Text><Text></Text><Text></Text>
<Form ref="credentials" style={styles.form} >
<Item floatingLabel style={{marginTop:10}}>
<Label style={{marginLeft: 15}}>First name</Label>
<Input style={{marginLeft: 25}} name="firstName" type="TextInput" />
</Item>
<Item floatingLabel style={{marginTop:10}}>
<Label style={{marginLeft: 15}}>Last name</Label>
<Input style={{marginLeft: 25}} name="lastName" type="TextInput" />
</Item>
<Item floatingLabel style={{marginTop:10}}>
<Label style={{marginLeft: 15}}>Signature</Label>
<Input style={{marginLeft: 25}} name="signature" type="TextInput" />
</Item>
<Button Block primary onPress={() => {console.log('Button clicked')}} style={styles.button}><Text>Sell it</Text></Button>
</Form>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
title: {
fontSize: 30,
textAlign: 'center',
margin: 10,
},
text: {
textAlign: 'left',
color: '#333333',
marginBottom: 5,
},
form: {
width: '80%'
},
button: {
margin: 10
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment