UpStyle constructor

UpStyle({
  1. Color? backgroundColor,
  2. Color? borderColor,
  3. Color? iconColor,
  4. double? borderWidth,
  5. Color? foregroundColor,
  6. Color? hoverBackgroundColor,
  7. Color? hoveredBorderColor,
  8. Color? hoveredForegroundColor,
  9. bool? isDisabled,
  10. Color? focusedBorderColor,
  11. Color? errorBorderColor,
  12. bool? isRounded,
  13. double? iconSize,
  14. double? borderRadius,
  15. Color? disabledBorderColor,
  16. Color? disabledBackgroundColor,
  17. Color? disabledForgroundColor,
  18. Color? tableBorderColor,
  19. Color? tableRowColor,
  20. Color? tableRowFocusedColor,
  21. Color? tableRowHoverColor,
  22. Color? tableRowPressedColor,
  23. Color? tableHeaderColor,
  24. Color? tableFooterColor,
  25. Color? tableHeaderTextColor,
  26. Color? tableFooterTextColor,
  27. Color? appBarColor,
  28. Color? appBarTitleColor,
  29. double? appBarTitleSize,
  30. double? buttonTextSize,
  31. Color? buttonBackgroundColor,
  32. Color? buttonBorderColor,
  33. double? buttonBorderRadius,
  34. double? buttonBorderWidth,
  35. Color? buttonHoverBackgroundColor,
  36. Color? buttonHoverBorderColor,
  37. Color? buttonHoverTextColor,
  38. Color? buttonTextColor,
  39. Color? buttonDisabledBorderColor,
  40. Color? buttonDisabledTextColor,
  41. Color? buttonDisbaledBackgroundColor,
  42. Color? checkboxBackgroundColor,
  43. Color? checkboxBorderColor,
  44. double? checkboxBorderRadius,
  45. double? checkboxBorderWidth,
  46. Color? checkboxHoverBorderColor,
  47. Color? checkboxRippleColor,
  48. Color? checkboxLabelColor,
  49. double? checkboxLabelSize,
  50. Color? checkboxCheckedColor,
  51. Color? checkboxDisabledBackgroundColor,
  52. Color? checkboxDisabledLabelColor,
  53. Color? checkboxCheckedDisabledColor,
  54. Color? radioButtonBorderColor,
  55. Color? radioButtonDisabledBorderColor,
  56. Color? radioButtonDisabledFilledColor,
  57. double? radioButtonBorderRadius,
  58. double? radioButtonBorderWidth,
  59. Color? radioButtonFilledColor,
  60. Color? radioButtonHoverBorderColor,
  61. Color? radioButtonLabelColor,
  62. double? radioButtonLabelSize,
  63. Color? radioButtonRippleColor,
  64. Color? radioButtonDisabledLabelColor,
  65. Color? textfieldBorderColor,
  66. Color? textfieldErrorBorderColor,
  67. Color? textfieldFocusedBorderColor,
  68. Color? textfieldLabelColor,
  69. double? textfieldBorderRadius,
  70. double? textfieldBorderWidth,
  71. double? textfieldLabelSize,
  72. double? dropdownBorderWidth,
  73. Color? dropdownBorderColor,
  74. double? dropdownBorderRadius,
  75. Color? dropdownErrorBorderColor,
  76. Color? dropdownFocusedBorderColor,
  77. Color? dropdownLabelColor,
  78. double? dropdownLabelSize,
})

Implementation

UpStyle({
  this.backgroundColor,
  this.borderColor,
  this.iconColor,
  this.borderWidth,
  this.foregroundColor,
  this.hoverBackgroundColor,
  this.hoveredBorderColor,
  this.hoveredForegroundColor,
  this.isDisabled,
  this.focusedBorderColor,
  this.errorBorderColor,
  this.isRounded,
  this.iconSize,
  this.borderRadius,
  this.disabledBorderColor,
  this.disabledBackgroundColor,
  this.disabledForgroundColor,

  // table
  this.tableBorderColor,
  this.tableRowColor,
  this.tableRowFocusedColor,
  this.tableRowHoverColor,
  this.tableRowPressedColor,
  this.tableHeaderColor,
  this.tableFooterColor,
  this.tableHeaderTextColor,
  this.tableFooterTextColor,

//appbar
  this.appBarColor,
  this.appBarTitleColor,
  this.appBarTitleSize,
  // button
  this.buttonTextSize,
  this.buttonBackgroundColor,
  this.buttonBorderColor,
  this.buttonBorderRadius,
  this.buttonBorderWidth,
  this.buttonHoverBackgroundColor,
  this.buttonHoverBorderColor,
  this.buttonHoverTextColor,
  this.buttonTextColor,
  this.buttonDisabledBorderColor,
  this.buttonDisabledTextColor,
  this.buttonDisbaledBackgroundColor,

  // checkbox
  this.checkboxBackgroundColor,
  this.checkboxBorderColor,
  this.checkboxBorderRadius,
  this.checkboxBorderWidth,
  this.checkboxHoverBorderColor,
  this.checkboxRippleColor,
  this.checkboxLabelColor,
  this.checkboxLabelSize,
  this.checkboxCheckedColor,
  this.checkboxDisabledBackgroundColor,
  this.checkboxDisabledLabelColor,
  this.checkboxCheckedDisabledColor,

  // radio button

  this.radioButtonBorderColor,
  this.radioButtonDisabledBorderColor,
  this.radioButtonDisabledFilledColor,
  this.radioButtonBorderRadius,
  this.radioButtonBorderWidth,
  this.radioButtonFilledColor,
  this.radioButtonHoverBorderColor,
  this.radioButtonLabelColor,
  this.radioButtonLabelSize,
  this.radioButtonRippleColor,
  this.radioButtonDisabledLabelColor,

  //textfield
  this.textfieldBorderColor,
  this.textfieldErrorBorderColor,
  this.textfieldFocusedBorderColor,
  this.textfieldLabelColor,
  this.textfieldBorderRadius,
  this.textfieldBorderWidth,
  this.textfieldLabelSize,

  //drodown
  this.dropdownBorderWidth,
  this.dropdownBorderColor,
  this.dropdownBorderRadius,
  this.dropdownErrorBorderColor,
  this.dropdownFocusedBorderColor,
  this.dropdownLabelColor,
  this.dropdownLabelSize,
});