style: apply dart formatting fixes across lib/ and test/
CI / Lint (pull_request) Successful in 19m19s
CI / Test (pull_request) Failing after 19m19s
CI / Build Android (pull_request) Skipped
CI / Build iOS (pull_request) Skipped

11 files had formatting inconsistencies that caused the
--set-exit-if-changed gate to fail. Automated formatting
via dart format now passes cleanly.
This commit is contained in:
robot
2026-08-01 11:06:17 +00:00
parent 0e131e1db2
commit 0257937859
11 changed files with 123 additions and 90 deletions
+8 -2
View File
@@ -16,7 +16,13 @@ void main() {
await tester.pump();
expect(find.text('KRYZ Go!'), findsWidgets);
expect(find.widgetWithIcon(ElevatedButton, Icons.play_arrow_rounded), findsOneWidget);
expect(find.widgetWithIcon(ElevatedButton, Icons.stop_rounded), findsOneWidget);
expect(
find.widgetWithIcon(ElevatedButton, Icons.play_arrow_rounded),
findsOneWidget,
);
expect(
find.widgetWithIcon(ElevatedButton, Icons.stop_rounded),
findsOneWidget,
);
});
}