RCKInputFieldConfig constructor
RCKInputFieldConfig({
- double? maxHeight = kInputFieldMaxHeight,
- Color? fillColor,
- InputBorder? border,
- InputBorder? focusedBorder,
- EdgeInsets contentPadding = const EdgeInsets.all(8.0),
- TextStyle? textStyle,
- String? hintText,
- TextStyle? hintStyle,
- Color? cursorColor,
- double borderRadius = 10.0,
- 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);