Skip to content

Commit 450e8f4

Browse files
authored
Merge pull request #59 from udos86/17.1.1
17.1.1
2 parents e7fae9a + 402d72e commit 450e8f4

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [17.1.1] - 09/14/2024
2+
3+
* adds `extends Object` to `<T>` of `FastSegmentedControl` according to latest Cupertino changes
4+
15
## [17.1.0] - 08/18/2024
26

37
* upgrades to Flutter `3.24.0`

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -115,24 +115,24 @@ FastForm(
115115

116116
## Widget Catalog
117117

118-
| `FastFormControl<T>` | field value type | wraps Material widget | wraps Cupertino widget<br> when `adaptive: true` |
119-
|:--------------------------------:|:----------------:|:---------------------------------------:|:--------------------------------------------------------------------:|
120-
| `FastAutocomplete<O>` | `String` | `Autocomplete<O>` | no |
121-
| `FastCheckbox` | `bool` | `CheckboxListTile` | `CupertinoCheckbox` |
122-
| `FastChoiceChips<T>` | `Set<T>` | `ChoiceChip` | no |
123-
| `FastCalendar` | `DateTime` | `CalendarDatePicker` | no |
124-
| `FastChipsInput` | `List<String>` | `RawAutocomplete<String>` + `InputChip` | no |
125-
| `FastDatePicker` | `DateTime` | `showDatePicker` | `CupertinoDatePicker` |
126-
| `FastDateRangePicker` | `DateTimeRange` | `showDateRangePicker` | no |
127-
| `FastDropdown<T>` | `T` | `DropdownButtonFormField<T>` | no |
128-
| `FastRadioGroup<T>` | `T` | `RadioListTile<T>` | no |
129-
| `FastRangeSlider` | `RangeValues` | `RangeSlider` | no |
130-
| `FastSegmentedButton<T>` | `Set<T>` | `SegmentedButton<T>` | no |
131-
| `FastSegmentedControl<T>` | `T` | no | `CupertinoSlidingSegmentedControl<T>` |
132-
| `FastSlider` | `double` | `Slider.adaptive` | `CupertinoSlider` |
133-
| `FastSwitch` | `bool` | `SwitchListTile` | `CupertinoSwitch` |
134-
| `FastTextField` | `String` | `TextFormField` | `CupertinoTextFormFieldRow` |
135-
| `FastTimePicker` | `TimeOfDay` | `showTimePicker` | no <br> use `FastDatePicker` with <br>`CupertinoDatePickerMode.time` |
118+
| `FastFormControl<T>` | field value type | wraps Material widget | wraps Cupertino widget<br> when `adaptive: true` |
119+
|:--------------------------------:|:------------------:|:---------------------------------------:|:--------------------------------------------------------------------:|
120+
| `FastAutocomplete<O>` | `String` | `Autocomplete<O>` | no |
121+
| `FastCheckbox` | `bool` | `CheckboxListTile` | `CupertinoCheckbox` |
122+
| `FastChoiceChips<T>` | `Set<T>` | `ChoiceChip` | no |
123+
| `FastCalendar` | `DateTime` | `CalendarDatePicker` | no |
124+
| `FastChipsInput` | `List<String>` | `RawAutocomplete<String>` + `InputChip` | no |
125+
| `FastDatePicker` | `DateTime` | `showDatePicker` | `CupertinoDatePicker` |
126+
| `FastDateRangePicker` | `DateTimeRange` | `showDateRangePicker` | no |
127+
| `FastDropdown<T>` | `T` | `DropdownButtonFormField<T>` | no |
128+
| `FastRadioGroup<T>` | `T` | `RadioListTile<T>` | no |
129+
| `FastRangeSlider` | `RangeValues` | `RangeSlider` | no |
130+
| `FastSegmentedButton<T>` | `Set<T>` | `SegmentedButton<T>` | no |
131+
| `FastSegmentedControl<T>` | `T extends Object` | no | `CupertinoSlidingSegmentedControl<T>` |
132+
| `FastSlider` | `double` | `Slider.adaptive` | `CupertinoSlider` |
133+
| `FastSwitch` | `bool` | `SwitchListTile` | `CupertinoSwitch` |
134+
| `FastTextField` | `String` | `TextFormField` | `CupertinoTextFormFieldRow` |
135+
| `FastTimePicker` | `TimeOfDay` | `showTimePicker` | no <br> use `FastDatePicker` with <br>`CupertinoDatePickerMode.time` |
136136

137137
## Adaptive Form Fields
138138

0 commit comments

Comments
 (0)