RCKInputFieldConfig constructor

RCKInputFieldConfig({
  1. double? maxHeight = kInputFieldMaxHeight,
  2. Color? fillColor,
  3. InputBorder? border,
  4. InputBorder? focusedBorder,
  5. EdgeInsets contentPadding = const EdgeInsets.all(8.0),
  6. TextStyle? textStyle,
  7. String? hintText,
  8. TextStyle? hintStyle,
  9. Color? cursorColor,
  10. double borderRadius = 10.0,
  11. TextInputAction textInputAction = TextInputAction.send,
})

Implementation

RCKInputFieldConfig({
  this.maxHeight = kInputFieldMaxHeight,
  Color? fillColor,
  this.border,
  this.focusedBorder,
  this.contentPadding = const EdgeInsets.all(8.0),
  this.textStyle,
  this.hintText,
  this.hintStyle,
  this.cursorColor,
  this.borderRadius = 10.0,
  this.textInputAction = TextInputAction.send,
}) : fillColor = fillColor ??
          RCKThemeProvider().themeColor.bgRegular ??
          const Color(0xFFFFFFFF);