InputPanelField constructor

InputPanelField({
  1. Key? key,
  2. String? text,
  3. bool obscureText = false,
  4. BoxDecoration? decoration,
  5. int maxLines = 1,
  6. double height = 38,
  7. TextInputAction textInputAction = TextInputAction.done,
  8. Color? normalColor,
  9. Color? focusColor = Colors.transparent,
  10. ValueChanged<String>? onSubmitted,
  11. TextEditingController? controller,
  12. String? hintText,
  13. FocusNode? focusNode,
  14. Widget? leftWidget,
  15. Color? backGroundColor,
  16. bool leftIconEnable = false,
  17. bool nonDecoration = false,
  18. double contentPadding = 12,
  19. List<TextInputFormatter>? inputFormatters,
  20. VoidCallback? onEditingComplete,
  21. VoidCallback? cancelCallBack,
  22. FocusScopeNode? scopeNode,
  23. int? maxLength,
  24. String? exceedLimitTip,
  25. TextInputType keyboardType = TextInputType.text,
  26. bool enable = true,
  27. Color? cursorColor,
  28. 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);