TextFields constructor

const TextFields({
  1. Key? key,
  2. List<TextFieldItem>? items,
  3. OnTextFieldListener? fieldListener,
  4. double? maxWidth,
  5. double? maxHeight,
  6. OnFieldsControllerCall? controllerCall,
  7. EdgeInsetsGeometry? itemMargin,
  8. double textMenuItemHeight = 36,
  9. OnTextMenuItemClick? menuItemClick,
  10. Color menuIconColor = const Color(0xff262626),
  11. Color? backgroundColor,
  12. BorderRadiusGeometry? borderRadius,
  13. EdgeInsetsGeometry? padding,
  14. EdgeInsetsGeometry? margin,
})

Implementation

const TextFields({
  Key? key,
  this.items,
  this.fieldListener,
  this.maxWidth,
  this.maxHeight,
  this.controllerCall,
  this.itemMargin,
  this.textMenuItemHeight = 36,
  this.menuItemClick,
  this.menuIconColor = const Color(0xff262626),
  this.backgroundColor,
  this.borderRadius,
  this.padding,
  this.margin,
}) : super(key: key);