Skip to content

Commit ce20d5a

Browse files
Update colors.dart to follow effective dart guidelines on redundant const (#206)
1 parent 3de7ca5 commit ce20d5a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

mdc_100_series/lib/colors.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414

1515
import 'package:flutter/material.dart';
1616

17-
const kShrinePink50 = const Color(0xFFFEEAE6);
18-
const kShrinePink100 = const Color(0xFFFEDBD0);
19-
const kShrinePink300 = const Color(0xFFFBB8AC);
20-
const kShrinePink400 = const Color(0xFFEAA4A4);
17+
const kShrinePink50 = Color(0xFFFEEAE6);
18+
const kShrinePink100 = Color(0xFFFEDBD0);
19+
const kShrinePink300 = Color(0xFFFBB8AC);
20+
const kShrinePink400 = Color(0xFFEAA4A4);
2121

22-
const kShrineBrown900 = const Color(0xFF442B2D);
22+
const kShrineBrown900 = Color(0xFF442B2D);
2323

24-
const kShrineErrorRed = const Color(0xFFC5032B);
24+
const kShrineErrorRed = Color(0xFFC5032B);
2525

26-
const kShrineSurfaceWhite = const Color(0xFFFFFBFA);
27-
const kShrineBackgroundWhite = Colors.white;
26+
const kShrineSurfaceWhite = Color(0xFFFFFBFA);
27+
const kShrineBackgroundWhite = Colors.white;

0 commit comments

Comments
 (0)