ThemedTextButton.js 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. import { StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import colors from '../../../theme/colors';
  4. import Button from '../../atoms/Button';
  5. import fonts from '../../../theme/fonts';
  6. const ThemedTextButton = ({ theme, onPress, title, titleStyle, buttonStyle}) => {
  7. let style = {};
  8. switch (theme) {
  9. case 'primary-outline':
  10. style = {
  11. buttonStyle: {
  12. backgroundColor: colors.white,
  13. maxWidth: '100%',
  14. width: '100%',
  15. alignItems: 'center',
  16. borderColor: colors.primaryColor,
  17. borderRadius: 6,
  18. borderWidth: 1
  19. },
  20. buttonTextStyle: {
  21. fontFamily: fonts.type.medium,
  22. color: colors.secondaryColor,
  23. }
  24. }
  25. break;
  26. case 'secondary-outline':
  27. style = {
  28. buttonStyle: {
  29. backgroundColor: colors.white,
  30. maxWidth: '100%',
  31. width: '100%',
  32. alignItems: 'center',
  33. borderColor: colors.secondaryColor,
  34. borderRadius: 6,
  35. borderWidth: 1
  36. },
  37. buttonTextStyle: {
  38. fontFamily: fonts.type.medium,
  39. color: colors.primaryColor,
  40. }
  41. }
  42. break;
  43. case 'secondary-contained':
  44. style = {
  45. buttonStyle: {
  46. backgroundColor: colors.secondaryColor,
  47. maxWidth: '100%',
  48. width: '100%',
  49. alignItems: 'center'
  50. },
  51. buttonTextStyle: {
  52. fontFamily: fonts.type.medium,
  53. color: colors.white,
  54. }
  55. }
  56. break;
  57. case 'primary-contained':
  58. default:
  59. style = {
  60. buttonStyle: {
  61. backgroundColor: colors.primaryColor,
  62. maxWidth: '100%',
  63. width: '100%',
  64. alignItems: 'center'
  65. },
  66. buttonTextStyle: {
  67. fontFamily: fonts.type.medium,
  68. color: colors.white,
  69. }
  70. }
  71. break;
  72. }
  73. const styles = StyleSheet.create(style)
  74. return (
  75. <Button
  76. onPress={onPress}
  77. style={[styles.buttonStyle, buttonStyle]}
  78. >
  79. <Text style={[styles.buttonTextStyle, titleStyle]}>
  80. {title}
  81. </Text>
  82. </Button>
  83. )
  84. }
  85. export default ThemedTextButton