aboutsummaryrefslogtreecommitdiffstats
path: root/lib/presentation/screens/home/home_ci.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/presentation/screens/home/home_ci.dart')
-rw-r--r--lib/presentation/screens/home/home_ci.dart6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/presentation/screens/home/home_ci.dart b/lib/presentation/screens/home/home_ci.dart
index 8584420..0bc6c91 100644
--- a/lib/presentation/screens/home/home_ci.dart
+++ b/lib/presentation/screens/home/home_ci.dart
@@ -11,9 +11,9 @@ class HomeScreenCI extends StatelessWidget {
children: [
// Note that the colors are specified with hex in order to match
// Qt's red/blue/green constants, which are different than Flutter's.
- Container(width: 1080, height: 216, color: Color(0xFF0000FF)),
- Container(width: 1080, height: 1488, color: Color(0xFFFF0000)),
- Container(width: 1080, height: 216, color: Color(0xFF008000))
+ Container(width: 1080, height: 216, color: const Color(0xFF0000FF)),
+ Container(width: 1080, height: 1488, color: const Color(0xFFFF0000)),
+ Container(width: 1080, height: 216, color: const Color(0xFF008000))
],
);
}