File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,18 @@ Add these line under your dependencies section:
28
28
29
29
` ` ` dart
30
30
MultiSelectFormField(
31
- key : _multiSelectKey,
32
- tagColor : Env.lightBlue,
33
- elementList : List.generate(
34
- 15,
35
- (index) => MultiSelectFormFieldItem(
36
- labelStyle : TextStyle(fontWeight: FontWeight.w600),
37
- leading : CircleAvatar(),
38
- label : " Test $index" ,
39
- value : " test" ,
40
- isSelected : index.isEven,
31
+ key : _multiSelectKey,
32
+ tagColor : Colors.blue,
33
+ elementList : List.generate(
34
+ 15,
35
+ (index) => MultiSelectFormFieldItem(
36
+ labelStyle : TextStyle(fontWeight: FontWeight.w600),
37
+ leading : CircleAvatar(),
38
+ label : " Test $index" ,
39
+ value : " test" ,
40
+ isSelected : index.isEven,
41
+ ),
41
42
),
42
- ),
43
43
),
44
44
```
45
45
@@ -58,4 +58,4 @@ And then :
58
58
var unselectedElements = _multiSelectKey.currentState.unselectedElements; // Retrieve all the unselected elements
59
59
```
60
60
## Contribute
61
- Every contributions are welcomed
61
+ Every contributions are welcomed
You can’t perform that action at this time.
0 commit comments