blob: 858442076e8e2791cb565d660c226f6889c8b6d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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))
],
);
}
}
|