SimpleTextFieldTag constructor

const SimpleTextFieldTag({
  1. Key? key,
  2. List<String> initialTags = const [],
  3. String? labelText,
  4. TextStyle? labelStyle,
  5. TextStyle? tagTextStyle,
  6. TextStyle? hintStyle,
  7. String? hintText,
  8. Color chipBackgroundColor = Colors.white,
  9. Color deleteIconColor = Colors.red,
  10. BorderSide chipBorderSide = const BorderSide(color: Colors.blue),
  11. TextEditingController? controller,
  12. dynamic onTagAdded(
    1. String
    )?,
  13. dynamic onTagRemoved(
    1. String
    )?,
})

Implementation

const SimpleTextFieldTag({
  Key? key,
  this.initialTags = const [],
  this.labelText,
  this.labelStyle,
  this.tagTextStyle,
  this.hintStyle,
  this.hintText,
  this.chipBackgroundColor = Colors.white,
  this.deleteIconColor = Colors.red,
  this.chipBorderSide = const BorderSide(color: Colors.blue),
  this.controller,
  this.onTagAdded,
  this.onTagRemoved,
}) : super(key: key);