File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.13.1
2
+
3
+ * Fix ` FSelectTile ` mixing in ` FItemMixin ` instead of ` FTileMixin ` .
4
+ * Fix ` SelectMenuTile ` mixing in ` FItemMixin ` instead of ` FTileMixin ` .
5
+
6
+
1
7
## 0.13.0
2
8
This update focuses on polishing & improving the usability of existing widgets.
3
9
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ typedef FSelectMenuTileController<T> = FMultiValueNotifier<T>;
21
21
/// * https://forui.dev/docs/tile/select-menu-tile for working examples.
22
22
/// * [FSelectTile] for a single select tile.
23
23
/// * [FSelectMenuTileStyle] for customizing a select menu tile's appearance.
24
- class FSelectMenuTile <T > extends FormField <Set <T >> with FItemMixin , FFormFieldProperties <Set <T >> {
24
+ class FSelectMenuTile <T > extends FormField <Set <T >> with FTileMixin , FFormFieldProperties <Set <T >> {
25
25
static Widget _builder <T >(BuildContext _, Set <dynamic >? _, Widget ? child) => child ?? const SizedBox ();
26
26
27
27
/// The controller that controls the selected tiles. Defaults to `FSelectMenuTileController.radio` .
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import 'package:forui/forui.dart';
11
11
/// * https://forui.dev/docs/tile/select-tile-group for working examples.
12
12
/// * [FSelectTileGroup] for grouping tiles together.
13
13
/// * [FTileStyle] for customizing a select tile's appearance.
14
- class FSelectTile <T > extends StatelessWidget with FItemMixin {
14
+ class FSelectTile <T > extends StatelessWidget with FTileMixin {
15
15
/// The style.
16
16
///
17
17
/// ## CLI
Original file line number Diff line number Diff line change 1
1
name : forui
2
2
description : Beautifully designed, minimalistic widgets for desktop & touch devices.
3
- version : 0.13.0
3
+ version : 0.13.1
4
4
homepage : https://forui.dev/
5
5
documentation : https://forui.dev/docs
6
6
repository : https://github.com/forus-labs/forui/tree/main/forui
You can’t perform that action at this time.
0 commit comments