File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ packages:
60
60
path: ".."
61
61
relative: true
62
62
source: path
63
- version: "9.4.0 "
63
+ version: "9.4.1 "
64
64
flutter_lints:
65
65
dependency: "direct dev"
66
66
description:
@@ -224,10 +224,10 @@ packages:
224
224
dependency: transitive
225
225
description:
226
226
name: vm_service
227
- sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
227
+ sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
228
228
url: "https://pub.dev"
229
229
source: hosted
230
- version: "14.2.4 "
230
+ version: "14.2.5 "
231
231
sdks:
232
232
dart: ">=3.5.0 <4.0.0"
233
233
flutter: ">=3.24.0"
Original file line number Diff line number Diff line change @@ -252,6 +252,14 @@ class FormBuilderChoiceChip<T> extends FormBuilderFieldDecoration<T> {
252
252
253
253
final ShapeBorder avatarBorder;
254
254
255
+ /// Indicates whether a checkmark should be displayed on the selected choice chip.
256
+ ///
257
+ /// Defaults to `true` .
258
+ ///
259
+ /// When set to `true` , a checkmark will appear on the selected chip to visually
260
+ /// indicate its selection status. If set to `false` , no checkmark will be shown.
261
+ final bool showCheckmark;
262
+
255
263
/// Creates a list of `Chip` s that acts like radio buttons
256
264
FormBuilderChoiceChip ({
257
265
super .autovalidateMode = AutovalidateMode .disabled,
@@ -290,6 +298,7 @@ class FormBuilderChoiceChip<T> extends FormBuilderFieldDecoration<T> {
290
298
this .textDirection,
291
299
this .verticalDirection = VerticalDirection .down,
292
300
this .visualDensity,
301
+ this .showCheckmark = true ,
293
302
}) : super (builder: (FormFieldState <T ?> field) {
294
303
final state = field as _FormBuilderChoiceChipState <T >;
295
304
@@ -330,6 +339,7 @@ class FormBuilderChoiceChip<T> extends FormBuilderFieldDecoration<T> {
330
339
padding: padding,
331
340
visualDensity: visualDensity,
332
341
avatarBorder: avatarBorder,
342
+ showCheckmark: showCheckmark,
333
343
),
334
344
],
335
345
),
Original file line number Diff line number Diff line change @@ -204,10 +204,10 @@ packages:
204
204
dependency: transitive
205
205
description:
206
206
name: vm_service
207
- sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
207
+ sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
208
208
url: "https://pub.dev"
209
209
source: hosted
210
- version: "14.2.4 "
210
+ version: "14.2.5 "
211
211
sdks:
212
212
dart: ">=3.5.0 <4.0.0"
213
213
flutter: ">=3.24.0"
You can’t perform that action at this time.
0 commit comments