DesktopCustomInputField constructor

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

Implementation

DesktopCustomInputField({
  Key? key,
  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,
}) : super(key: key);