We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606ffd4 commit f32b4cdCopy full SHA for f32b4cd
test/brands/flutter_test.dart
@@ -24,5 +24,8 @@ void main() {
24
test('light grey', () {
25
expect(const Flutter.lightGrey().color, const Color(0xFFD5D7DA));
26
});
27
+ test('white', () {
28
+ expect(const Flutter.white().color, const Color(0xFFFFFFFF));
29
+ });
30
31
}
test/brands/twitter_test.dart
@@ -27,5 +27,8 @@ void main() {
const Color(0xFFF5F8FA),
);
+ expect(const Twitter.white().color, const Color(0xFFFFFFFF));
32
33
34
0 commit comments