No Description

styles.js 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import { StyleSheet } from "react-native"
  2. import colors from "./colors"
  3. export const styles = StyleSheet.create({
  4. stdcontainer: {
  5. flex: 1,
  6. justifyContent: 'flex-start',
  7. alignItems: 'center'
  8. },
  9. regcontainer: {
  10. flex: 1,
  11. justifyContent: 'center',
  12. alignItems: 'center',
  13. },
  14. regbutton:{
  15. backgroundColor: colors.skyblue,
  16. justifyContent: 'center',
  17. alignItems: 'center',
  18. width: '50%',
  19. height: '5%',
  20. },
  21. regtxtfield: {
  22. backgroundColor: colors.softpink,
  23. width: '75%',
  24. height: '5%',
  25. borderRadius: 25,
  26. paddingLeft: 20,
  27. paddingRight: 20,
  28. margin: 20,
  29. },
  30. regbuttontext: {
  31. color: colors.white,
  32. fontSize: 17
  33. },
  34. logo: {
  35. width: "25%",
  36. height: "25%",
  37. top: 50,
  38. marginBottom: 200
  39. },
  40. loginbutton: {
  41. position: 'absolute',
  42. bottom: 50,
  43. },
  44. picker: {
  45. width: '50%',
  46. },
  47. qsttxt: {
  48. marginTop: 20,
  49. fontWeight: "bold"
  50. }
  51. })