BsInputStyle constructor

const BsInputStyle({
  1. Color? textColor,
  2. Color iconColor = Colors.black87,
  3. Color focusedColor = BsColor.primary,
  4. Color focusedErrorColor = BsColor.danger,
  5. Color focusedErrorTextColor = BsColor.danger,
  6. Color? backgroundColor = Colors.transparent,
  7. Color? disabledColor = const Color(0xffe7e7e7),
  8. BoxBorder? border,
  9. BorderRadiusGeometry? borderRadius,
  10. List<BoxShadow> boxShadowFocused = const [],
})

Construct BsInputStyle

Implementation

const BsInputStyle({
  this.textColor,
  this.iconColor = Colors.black87,
  this.focusedColor = BsColor.primary,
  this.focusedErrorColor = BsColor.danger,
  this.focusedErrorTextColor = BsColor.danger,
  this.backgroundColor = Colors.transparent,
  this.disabledColor = const Color(0xffe7e7e7),
  this.border,
  this.borderRadius,
  this.boxShadowFocused = const [],
});