You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`options` property is `List<SmartSelectOption<T>>`, it can be input directly as in the example below
88
+
`options` property is `List<SmartSelectOption<T>>`, it can be input directly as in the example below, more info about `SmartSelectOption` can be found on the [API Reference](https://pub.dev/documentation/smart_select/latest/smart_select/SmartSelectOption-class.html)
89
89
90
90
```
91
-
SmartSelect.single/multiple(
91
+
SmartSelect<T>.single/multiple(
92
92
...,
93
93
...,
94
94
options: <SmartSelectOption<int>>[
@@ -99,7 +99,7 @@ SmartSelect.single/multiple(
99
99
);
100
100
```
101
101
102
-
or it can be created from any list using helper provided by this package, like the example below
102
+
`options` also can be created from any list using helper provided by this package, like the example below
103
103
104
104
```
105
105
List<Map<String, String>> days = [
@@ -112,7 +112,7 @@ List<Map<String, String>> days = [
By default SmartSelect will open choices modal in full page. You can change it by changing the `modalType` property with this value:
129
129
130
130
```
131
-
SmartSelect.single/multiple(
131
+
SmartSelect<T>.single/multiple(
132
132
...,
133
133
...,
134
134
// open in full page
@@ -145,7 +145,7 @@ SmartSelect.single/multiple(
145
145
By default SmartSelect will use radio for single choice and checkbox for multiple choice, but it can change by changing the `choiceType` with this value:
*[Build Options from List of String](https://github.com/davigmacode/flutter_smart_select/blob/master/example/lib/features_option/option_list_of_string.dart)
43
+
*[Build Options from List of Map](https://github.com/davigmacode/flutter_smart_select/blob/master/example/lib/features_option/option_list_of_map.dart)
44
+
*[Build Options from List of List Of String](https://github.com/davigmacode/flutter_smart_select/blob/master/example/lib/features_option/option_list_of_list.dart)
0 commit comments