Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

104 wiersze
2.3 KiB

  1. import 'package:flutter/material.dart';
  2. import 'package:michele_s_application8/core/app_export.dart';
  3. class AppStyle {
  4. static TextStyle txtRobotoRomanLight984 = TextStyle(
  5. color: ColorConstant.black900,
  6. fontSize: getFontSize(
  7. 9.84,
  8. ),
  9. fontFamily: 'Roboto',
  10. fontWeight: FontWeight.w300,
  11. );
  12. static TextStyle txtRobotoRomanMedium1324 = TextStyle(
  13. color: ColorConstant.gray900,
  14. fontSize: getFontSize(
  15. 13.24,
  16. ),
  17. fontFamily: 'Roboto',
  18. fontWeight: FontWeight.w500,
  19. );
  20. static TextStyle txtRobotoRomanSemiBold24Black900 = TextStyle(
  21. color: ColorConstant.black900,
  22. fontSize: getFontSize(
  23. 24,
  24. ),
  25. fontFamily: 'Roboto',
  26. fontWeight: FontWeight.w600,
  27. );
  28. static TextStyle txtRobotoRomanMedium10 = TextStyle(
  29. color: ColorConstant.blueGray400,
  30. fontSize: getFontSize(
  31. 10,
  32. ),
  33. fontFamily: 'Roboto',
  34. fontWeight: FontWeight.w500,
  35. );
  36. static TextStyle txtRobotoRomanSemiBold19 = TextStyle(
  37. color: ColorConstant.teal300,
  38. fontSize: getFontSize(
  39. 19,
  40. ),
  41. fontFamily: 'Roboto',
  42. fontWeight: FontWeight.w600,
  43. );
  44. static TextStyle txtRobotoRegular16 = TextStyle(
  45. color: ColorConstant.bluegray400,
  46. fontSize: getFontSize(
  47. 16,
  48. ),
  49. fontFamily: 'Roboto',
  50. fontWeight: FontWeight.w400,
  51. );
  52. static TextStyle txtRobotoRomanSemiBold24Black9001 = TextStyle(
  53. color: ColorConstant.black900,
  54. fontSize: getFontSize(
  55. 24,
  56. ),
  57. fontFamily: 'Roboto',
  58. fontWeight: FontWeight.w600,
  59. );
  60. static TextStyle txtRobotoRomanSemiBold24 = TextStyle(
  61. color: ColorConstant.whiteA700,
  62. fontSize: getFontSize(
  63. 24,
  64. ),
  65. fontFamily: 'Roboto',
  66. fontWeight: FontWeight.w600,
  67. );
  68. static TextStyle txtRobotoRomanSemiBold19Black900 = TextStyle(
  69. color: ColorConstant.black900,
  70. fontSize: getFontSize(
  71. 19,
  72. ),
  73. fontFamily: 'Roboto',
  74. fontWeight: FontWeight.w600,
  75. );
  76. static TextStyle txtRobotoRegular20 = TextStyle(
  77. color: ColorConstant.black900,
  78. fontSize: getFontSize(
  79. 20,
  80. ),
  81. fontFamily: 'Roboto',
  82. fontWeight: FontWeight.w400,
  83. );
  84. static TextStyle txtRobotoRomanSemiBold19Lime600 = TextStyle(
  85. color: ColorConstant.lime600,
  86. fontSize: getFontSize(
  87. 19,
  88. ),
  89. fontFamily: 'Roboto',
  90. fontWeight: FontWeight.w600,
  91. );
  92. }