Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ class WonkyCharState extends State<WonkyChar>
'**ERROR** unrecognized property to animate: ${s.property}');
}
}
break;
}
}
// save refs to all curves just to persist in mem, don't need to touch them again
Expand Down
3 changes: 1 addition & 2 deletions experimental/web_dashboard/lib/src/api/mock.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import 'dart:async';
import 'dart:math';

import 'package:collection/collection.dart';
import 'package:uuid/uuid.dart' as uuid;

import 'api.dart';
Expand Down Expand Up @@ -108,7 +107,7 @@ class MockEntryApi implements EntryApi {
var list = _storage.keys
.where((k) => k.startsWith(categoryId))
.map((k) => _storage[k])
.whereNotNull()
.nonNulls
.toList();
return list;
}
Expand Down
2 changes: 1 addition & 1 deletion material_3_demo/test/component_screen_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ void main() {
});

testWidgets(
'Material version switches between Material3 and Material2 when'
'Material version switches between Material3 and Material2 when '
'the version icon is clicked', (tester) async {
widgetSetup(tester, 450, windowHeight: 7000);
await tester.pumpWidget(const App());
Expand Down