Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const styles = StyleSheet.create({
  2.   container: {
  3.     flexDirection: "column",
  4.     paddingTop: 20,
  5.     alignItems: "stretch"
  6.   },
  7.   form: {
  8.     borderBottomWidth: 2,
  9.     borderColor: "#e4e4e4",
  10.     backgroundColor: "#e8e8e8",
  11.     height: 50,
  12.     padding: 15,
  13.     margin: 20,
  14.     marginVertical: 10,
  15.     borderTopLeftRadius: 4,
  16.     borderTopRightRadius: 4
  17.   },
  18.   button: {
  19.     height: 40,
  20.     alignItems: "center",
  21.     justifyContent: "center",
  22.     backgroundColor: "#ff8833",
  23.     borderRadius: 4,
  24.     elevation: 1
  25.   },
  26.   buttonText: {
  27.     color: "white",
  28.     fontSize: 15,
  29.     textTransform: "uppercase"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement