Skip to content

Commit 487fae8

Browse files
committed
Fix formatting
1 parent 2d7de6f commit 487fae8

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

example/lib/widgets/message_card.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ class MessageCard extends StatelessWidget {
1515
final Color infoColor;
1616

1717
const MessageCard({
18-
required this.message, required this.type, super.key,
18+
required this.message,
19+
required this.type,
20+
super.key,
1921
this.errorColor = const Color(0xFFCC6941),
2022
this.infoColor = const Color(0xFF5E89FF),
2123
});

lib/src/widgets/property_widgets/widgets/property_scaffold.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ class PropertyScaffold extends StatelessWidget {
1313
final String? tooltipMessage;
1414

1515
const PropertyScaffold({
16-
required this.label, required this.child, super.key,
16+
required this.label,
17+
required this.child,
18+
super.key,
1719
this.tooltipMessage,
1820
});
1921

lib/src/widgets/property_widgets/widgets/title_with_tooltip.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ class TitleWithTooltip extends StatelessWidget {
55
final String tooltipMessage;
66

77
const TitleWithTooltip({
8-
required this.label, required this.tooltipMessage, super.key,
8+
required this.label,
9+
required this.tooltipMessage,
10+
super.key,
911
});
1012

1113
@override

lib/src/widgets/select_device/select_device.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ class DevicePropertyScaffold extends StatelessWidget {
3333
final String? tooltipMessage;
3434

3535
const DevicePropertyScaffold({
36-
required this.label, required this.child, super.key,
36+
required this.label,
37+
required this.child,
38+
super.key,
3739
this.tooltipMessage,
3840
});
3941

0 commit comments

Comments
 (0)