Skip to content

Commit 8636e33

Browse files
authored
[Documentation] Add ActionChip in disabled state (#123143)
[Documentation] Add ActionChip in disabled state
1 parent 4831dd9 commit 8636e33

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/flutter/lib/src/material/chip_theme.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ class ChipTheme extends InheritedTheme {
112112
/// Typically this is a [Text] widget.
113113
/// * The "delete icon", which is a widget that appears at the end of the chip.
114114
/// * The chip is disabled when it is not accepting user input. Only some chips
115-
/// have a disabled state: [InputChip], [ChoiceChip], and [FilterChip].
115+
/// have a disabled state: [ActionChip], [ChoiceChip], [FilterChip], and
116+
/// [InputChip].
116117
///
117118
/// The simplest way to create a ChipThemeData is to use [copyWith] on the one
118119
/// you get from [ChipTheme.of], or create an entirely new one with
@@ -283,8 +284,8 @@ class ChipThemeData with Diagnosticable {
283284
/// [DisabledChipAttributes.disabledColor], the background color
284285
/// which indicates that the chip is not enabled.
285286
///
286-
/// This property applies to [ChoiceChip], [FilterChip],
287-
/// [InputChip], [RawChip].
287+
/// This property applies to [ActionChip], [ChoiceChip],
288+
/// [FilterChip], [InputChip], and [RawChip].
288289
final Color? disabledColor;
289290

290291
/// Overrides the default for

0 commit comments

Comments
 (0)