dart format whole tree

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-05-03 21:51:59 +02:00
co-authored by Claude
parent c436e72c5c
commit 9c7ec008dc
102 changed files with 1176 additions and 1282 deletions
+2 -4
View File
@@ -26,13 +26,11 @@ void main() {
testWidgets('muted mode uses globalTextMuted', (tester) async {
await tester.pumpWidget(harness(f, const ClideText('x', muted: true)));
final text = tester.widget<Text>(find.byType(Text));
expect(
text.style!.color, f.services.theme.current.surface.globalTextMuted);
expect(text.style!.color, f.services.theme.current.surface.globalTextMuted);
});
testWidgets('explicit color wins over tokens', (tester) async {
await tester.pumpWidget(
harness(f, const ClideText('x', color: Color(0xFFAABBCC))));
await tester.pumpWidget(harness(f, const ClideText('x', color: Color(0xFFAABBCC))));
final text = tester.widget<Text>(find.byType(Text));
expect(text.style!.color, const Color(0xFFAABBCC));
});