Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created June 9, 2020 09:09
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 amandeepmittal/b313d93e1d257ad1e9a27df2b75f2681 to your computer and use it in GitHub Desktop.
Save amandeepmittal/b313d93e1d257ad1e9a27df2b75f2681 to your computer and use it in GitHub Desktop.
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
backgroundColor: '#f8f8f2',
paddingTop: 60
},
title: {
fontSize: 20,
textAlign: 'center'
},
inputContainer: {
marginVertical: 20
},
text: {
fontSize: 16,
color: '#000',
marginVertical: 5
},
input: {
fontSize: 14,
marginVertical: 10,
padding: 5,
backgroundColor: '#ebebeb',
borderColor: '#333',
borderRadius: 4,
borderWidth: 1,
textAlign: 'center'
},
button: {
alignItems: 'center',
backgroundColor: 'purple',
padding: 10,
marginTop: 10,
borderRadius: 10
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment