aboutsummaryrefslogtreecommitdiffstats
path: root/lib/presentation/screens/home
diff options
context:
space:
mode:
Diffstat (limited to 'lib/presentation/screens/home')
-rw-r--r--lib/presentation/screens/home/home_ci.dart20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/presentation/screens/home/home_ci.dart b/lib/presentation/screens/home/home_ci.dart
new file mode 100644
index 0000000..8584420
--- /dev/null
+++ b/lib/presentation/screens/home/home_ci.dart
@@ -0,0 +1,20 @@
+import 'package:flutter_ics_homescreen/export.dart';
+
+// Simple fixed pattern homescreen for AGL CI screenshot testing
+
+class HomeScreenCI extends StatelessWidget {
+ const HomeScreenCI({super.key});
+
+ @override
+ Widget build(BuildContext context) {
+ return Column(
+ 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))
+ ],
+ );
+ }
+}