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
@@ -12,15 +12,13 @@ void main() {
setUp(() async => f = await KernelFixture.create());
tearDown(() async => f.dispose());
testWidgets('default background comes from panelBackground token',
(tester) async {
testWidgets('default background comes from panelBackground token', (tester) async {
await tester.pumpWidget(
harness(f, const ClideSurface(child: Text('x'))),
);
final container = tester.widget<Container>(find.byType(Container));
final decoration = container.decoration as BoxDecoration;
expect(
decoration.color, f.services.theme.current.surface.panelBackground);
expect(decoration.color, f.services.theme.current.surface.panelBackground);
});
testWidgets('explicit color overrides the token default', (tester) async {