InputChip class
A Material Design input chip.
Input chips represent a complex piece of information, such as an entity (person, place, or thing) or conversational text, in a compact form.
Input chips can be made selectable by setting onSelected, deletable by setting onDeleted, and pressable like a button with onPressed. They have a label, and they can have a leading icon (see avatar) and a trailing icon (deleteIcon). Colors and padding can be customized.
Requires one of its ancestors to be a Material widget.
Input chips work together with other UI elements. They can appear:
- In a Wrap widget.
- In a horizontally scrollable list, for example configured such as a ListView with ListView.scrollDirection set to Axis.horizontal.
To create a local project with this code sample, run:
flutter create --sample=material.InputChip.1 mysample
To create a local project with this code sample, run:
flutter create --sample=material.InputChip.2 mysample
Material Design 3
InputChip can be used for Input chips from Material Design 3. If ThemeData.useMaterial3 is true, then InputChip will be styled to match the Material Design 3 specification for Input chips.
See also:
- Chip, a chip that displays information and can be deleted.
- ChoiceChip, allows a single selection from a set of options. Choice chips contain related descriptive text or categories.
- FilterChip, uses tags or descriptive words as a way to filter content.
- ActionChip, represents an action related to primary content.
- CircleAvatar, which shows images or initials of people.
- Wrap, A widget that displays its children in multiple horizontal or vertical runs.
- material.io/design/components/chips.html
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatelessWidget
- InputChip
- Implemented types
Constructors
-
InputChip.new({Key? key, Widget? avatar, required Widget label, TextStyle? labelStyle, EdgeInsetsGeometry? labelPadding, bool selected = false, bool isEnabled = true, ValueChanged<
bool> ? onSelected, Widget? deleteIcon, VoidCallback? onDeleted, Color? deleteIconColor, String? deleteButtonTooltipMessage, VoidCallback? onPressed, double? pressElevation, Color? disabledColor, Color? selectedColor, String? tooltip, BorderSide? side, OutlinedBorder? shape, Clip clipBehavior = Clip.none, FocusNode? focusNode, bool autofocus = false, MaterialStateProperty<Color?> ? color, Color? backgroundColor, EdgeInsetsGeometry? padding, VisualDensity? visualDensity, MaterialTapTargetSize? materialTapTargetSize, double? elevation, Color? shadowColor, Color? surfaceTintColor, IconThemeData? iconTheme, Color? selectedShadowColor, bool? showCheckmark, Color? checkmarkColor, ShapeBorder avatarBorder = const CircleBorder(), BoxConstraints? avatarBoxConstraints, BoxConstraints? deleteIconBoxConstraints, ChipAnimationStyle? chipAnimationStyle, MouseCursor? mouseCursor}) -
Creates an InputChip.
const
Properties
- autofocus â bool
-
True if this widget will be selected as the initial focus when no other
node in its scope is currently focused.
final
- avatar â Widget?
-
A widget to display prior to the chip's label.
final
- avatarBorder â ShapeBorder
-
The shape of the translucent highlight painted over the avatar when the
selected property is true.
final
- avatarBoxConstraints â BoxConstraints?
-
Optional size constraints for the avatar.
final
- backgroundColor â Color?
-
Color to be used for the unselected, enabled chip's background.
final
- checkmarkColor â Color?
-
Color of the chip's check mark when a check mark is visible.
final
- chipAnimationStyle â ChipAnimationStyle?
-
Used to override the default chip animations durations.
final
- clipBehavior â Clip
-
The content will be clipped (or not) according to this option.
final
-
color
â MaterialStateProperty<
Color?> ? -
The color that fills the chip, in all WidgetStates.
final
- deleteButtonTooltipMessage â String?
-
The message to be used for the chip's delete button tooltip.
final
- deleteIcon â Widget?
-
The icon displayed when onDeleted is set.
final
- deleteIconBoxConstraints â BoxConstraints?
-
Optional size constraints for the delete icon.
final
- deleteIconColor â Color?
-
Used to define the delete icon's color with an IconTheme that
contains the icon.
final
- disabledColor â Color?
-
The color used for the chip's background to indicate that it is not
enabled.
final
- elevation â double?
-
Elevation to be applied on the chip relative to its parent.
final
- focusNode â FocusNode?
-
An optional focus node to use as the focus node for this widget.
final
- hashCode â int
-
The hash code for this object.
no setterinherited
- iconTheme â IconThemeData?
-
Theme used for all icons in the chip.
final
- isEnabled â bool
-
Whether or not this chip is enabled for input.
final
- key â Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- label â Widget
-
The primary content of the chip.
final
- labelPadding â EdgeInsetsGeometry?
-
The padding around the label widget.
final
- labelStyle â TextStyle?
-
The style to be applied to the chip's label.
final
- materialTapTargetSize â MaterialTapTargetSize?
-
Configures the minimum size of the tap target.
final
- mouseCursor â MouseCursor?
-
The cursor for a mouse pointer when it enters or is hovering over the
widget.
final
- onDeleted â VoidCallback?
-
Called when the user taps the deleteIcon to delete the chip.
final
- onPressed â VoidCallback?
-
Called when the user taps the chip.
final
-
onSelected
â ValueChanged<
bool> ? -
Called when the chip should change between selected and de-selected
states.
final
- padding â EdgeInsetsGeometry?
-
The padding between the contents of the chip and the outside shape.
final
- pressElevation â double?
-
Elevation to be applied on the chip relative to its parent during the
press motion.
final
- runtimeType â Type
-
A representation of the runtime type of the object.
no setterinherited
- selected â bool
-
Whether or not this chip is selected.
final
- selectedColor â Color?
-
Color to be used for the chip's background, indicating that it is
selected.
final
- selectedShadowColor â Color?
-
Color of the chip's shadow when the elevation is greater than 0 and the
chip is selected.
final
- shadowColor â Color?
-
Color of the chip's shadow when the elevation is greater than 0.
final
- shape â OutlinedBorder?
-
The OutlinedBorder to draw around the chip.
final
- showCheckmark â bool?
-
Whether or not to show a check mark when
SelectableChipAttributes.selected is true.
final
- side â BorderSide?
-
The color and weight of the chip's outline.
final
- surfaceTintColor â Color?
-
Color of the chip's surface tint overlay when its elevation is
greater than 0.
final
- tooltip â String?
-
Tooltip string to be used for the body area (where the label and avatar
are) of the chip.
final
- visualDensity â VisualDensity?
-
Defines how compact the chip's layout will be.
final
Methods
-
build(
BuildContext context) â Widget -
Describes the part of the user interface represented by this widget.
override
-
createElement(
) â StatelessElement -
Creates a StatelessElement to manage this widget's location in the tree.
inherited
-
debugDescribeChildren(
) â List< DiagnosticsNode> -
Returns a list of DiagnosticsNode objects describing this node's
children.
inherited
-
debugFillProperties(
DiagnosticPropertiesBuilder properties) â void -
Add additional properties associated with the node.
inherited
-
noSuchMethod(
Invocation invocation) â dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toDiagnosticsNode(
{String? name, DiagnosticsTreeStyle? style}) â DiagnosticsNode -
Returns a debug representation of the object that is used by debugging
tools and by DiagnosticsNode.toStringDeep.
inherited
-
toString(
{DiagnosticLevel minLevel = DiagnosticLevel.info}) â String -
A string representation of this object.
inherited
-
toStringDeep(
{String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug, int wrapWidth = 65}) â String -
Returns a string representation of this node and its descendants.
inherited
-
toStringShallow(
{String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) â String -
Returns a one-line detailed description of the object.
inherited
-
toStringShort(
) â String -
A short, textual description of this widget.
inherited
Operators
-
operator ==(
Object other) â bool -
The equality operator.
inherited