WidgetStyleRF constructor

WidgetStyleRF({
  1. double? height,
  2. double? width,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. Decoration? decoration,
  6. InputDecoration? inputDecoration,
  7. TextStyle? textStyle,
  8. Color? textColor = Colors.black,
  9. double fontSize = 16.0,
  10. String? fontFamily,
  11. FontWeight fontWeight = FontWeight.normal,
  12. Color borderColor = Colors.white,
  13. Border? border,
  14. double? borderWidth,
  15. double? borderRadius,
  16. Color? backColor,
  17. List<Widget>? backgroundPositionedImages,
  18. List<BoxShadow>? shadow,
  19. Color? hintColor,
  20. bool? visible,
  21. Icon? icon,
  22. IconData? icons,
  23. Color? iconColor,
  24. Icon? iconAlt,
  25. IconData? iconsAlt,
  26. Color? iconColorAlt,
  27. Widget? placeholder,
  28. Color? placeholderBackColor,
  29. Border? placeholderBorder,
  30. int? placeholderLines,
  31. double? placeholderRadius,
  32. Color? placeholderLineColor,
  33. InputBorder? inputBorder,
  34. double? placeholderLineHeight,
  35. bool? placeholderVisible = true,
})

Implementation

WidgetStyleRF({
  this.height,
  this.width,
  this.padding,
  this.margin,
  this.decoration,
  this.inputDecoration,
  this.textStyle,
  this.textColor = Colors.black,
  this.fontSize = 16.0,
  this.fontFamily,
  this.fontWeight = FontWeight.normal,
  this.borderColor = Colors.white,
  this.border,
  this.borderWidth,
  this.borderRadius,
  this.backColor,
  this.backgroundPositionedImages,
  this.shadow,
  this.hintColor,
  this.visible,
  this.icon,
  this.icons,
  this.iconColor,
  this.iconAlt,
  this.iconsAlt,
  this.iconColorAlt,
  this.placeholder,
  this.placeholderBackColor,
  this.placeholderBorder,
  this.placeholderLines,
  this.placeholderRadius,
  this.placeholderLineColor,
  this.inputBorder,
  this.placeholderLineHeight,
  this.placeholderVisible = true,
});