DesktopCustomInputField constructor

DesktopCustomInputField({
  1. String hintText = '',
  2. double height = 50,
  3. double width = 300,
  4. Color? iconColor,
  5. IconData? icon,
  6. dynamic onTap()?,
  7. dynamic onIconTap()?,
  8. ValueChanged<String>? value,
  9. String initialValue = '',
  10. Function? onSubmitted,
  11. Color? backgroundColor,
  12. bool isReadOnly = false,
})

Implementation

DesktopCustomInputField(
    {this.hintText = '',
    this.height = 50,
    this.width = 300,
    this.iconColor,
    this.icon,
    this.onTap,
    this.onIconTap,
    this.value,
    this.initialValue = '',
    this.onSubmitted,
    this.backgroundColor,
    this.isReadOnly = false});