Skip to content

Commit 81d2181

Browse files
committed
v0.0.2
2 parents e3fbd94 + 81c021c commit 81d2181

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ Add these line under your dependencies section:
2828
2929
```dart
3030
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+
),
4142
),
42-
),
4343
),
4444
```
4545

@@ -58,4 +58,4 @@ And then :
5858
var unselectedElements = _multiSelectKey.currentState.unselectedElements; // Retrieve all the unselected elements
5959
```
6060
## Contribute
61-
Every contributions are welcomed
61+
Every contributions are welcomed

0 commit comments

Comments
 (0)