SimpleTextFieldTag constructor
const
SimpleTextFieldTag({
- Key? key,
- List<
String> initialTags = const [], - String? labelText,
- TextStyle? labelStyle,
- TextStyle? tagTextStyle,
- TextStyle? hintStyle,
- String? hintText,
- Color chipBackgroundColor = Colors.white,
- Color deleteIconColor = Colors.red,
- BorderSide chipBorderSide = const BorderSide(color: Colors.blue),
- TextEditingController? controller,
- dynamic onTagAdded()?,
- dynamic onTagRemoved()?,
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);