We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e6c6f commit 3272557Copy full SHA for 3272557
lib/view/pages/wallpaper/color_shading_option_row.dart
@@ -12,17 +12,20 @@ class ColorShadingOptionRow extends StatelessWidget {
12
this.actionDescription,
13
required this.value,
14
required this.onDropDownChanged,
15
+ this.width,
16
}) : super(key: key);
17
18
final String actionLabel;
19
final String? actionDescription;
20
final ColorShadingType value;
21
final Function(ColorShadingType) onDropDownChanged;
22
+ final double? width;
23
24
@override
25
Widget build(BuildContext context) {
26
final model = context.read<WallpaperModel>();
27
return YaruRow(
28
+ width: width,
29
enabled: true,
30
trailingWidget: Text(actionLabel),
31
description: actionDescription,
0 commit comments