InputPanelField constructor
InputPanelField({
- Key? key,
- String? text,
- bool obscureText = false,
- BoxDecoration? decoration,
- int maxLines = 1,
- double height = 38,
- TextInputAction textInputAction = TextInputAction.done,
- Color? normalColor,
- Color? focusColor = Colors.transparent,
- ValueChanged<
String> ? onSubmitted, - TextEditingController? controller,
- String? hintText,
- FocusNode? focusNode,
- Widget? leftWidget,
- Color? backGroundColor,
- bool leftIconEnable = false,
- bool nonDecoration = false,
- double contentPadding = 12,
- List<
TextInputFormatter> ? inputFormatters, - VoidCallback? onEditingComplete,
- VoidCallback? cancelCallBack,
- FocusScopeNode? scopeNode,
- int? maxLength,
- String? exceedLimitTip,
- TextInputType keyboardType = TextInputType.text,
- bool enable = true,
- Color? cursorColor,
- EdgeInsetsGeometry? padding,
Implementation
InputPanelField({
Key? key,
this.text,
this.obscureText = false,
this.decoration,
this.maxLines = 1,
this.height = 38,
this.textInputAction = TextInputAction.done,
this.normalColor,
this.focusColor = Colors.transparent,
this.onSubmitted,
this.controller,
this.hintText,
this.focusNode,
this.leftWidget,
this.backGroundColor,
this.leftIconEnable = false,
this.nonDecoration = false,
this.contentPadding = 12,
this.inputFormatters,
this.onEditingComplete,
this.cancelCallBack,
this.scopeNode,
this.maxLength,
this.exceedLimitTip,
this.keyboardType = TextInputType.text,
this.enable = true,
this.cursorColor,
this.padding,
}) : super(key: key);