@@ -96,45 +96,36 @@ void main() {
96
96
ShopItems .bulletColors[7 ].purchase (noCost: true );
97
97
ShopItems .bulletColors[9 ].purchase (noCost: true );
98
98
99
- const darkFrameIcons = ScreenshotFrameColors (
100
- topBarIconBrightness: Brightness .dark,
101
- gestureHintBrightness: Brightness .dark,
102
- );
103
- const lightFrameIcons = ScreenshotFrameColors (
104
- topBarIconBrightness: Brightness .light,
105
- gestureHintBrightness: Brightness .light,
106
- );
107
-
108
99
_testGame (
109
- frameColors: darkFrameIcons ,
100
+ frameColors: ScreenshotFrameColors .dark ,
110
101
goldenFileName: '1_home' ,
111
102
child: const HomePage (),
112
103
);
113
104
_testGame (
114
105
gameSave: inProgressGameSave,
115
- frameColors: lightFrameIcons ,
106
+ frameColors: ScreenshotFrameColors .light ,
116
107
goldenFileName: '2_play' ,
117
108
child: const PlayPage (),
118
109
);
119
110
// _testGame(
120
111
// gameSave: gameOverGameSave,
121
- // frameColors: darkFrameIcons ,
112
+ // frameColors: ScreenshotFrameColors.dark ,
122
113
// goldenFileName: '3_game_over',
123
114
// child: const PlayPage(),
124
115
// );
125
116
_testGame (
126
117
goldenFileName: '4_shop' ,
127
- frameColors: darkFrameIcons ,
118
+ frameColors: ScreenshotFrameColors .dark ,
128
119
child: const ShopPage (),
129
120
);
130
121
_testGame (
131
122
goldenFileName: '5_tutorial' ,
132
- frameColors: darkFrameIcons ,
123
+ frameColors: ScreenshotFrameColors .dark ,
133
124
child: const TutorialPage (),
134
125
);
135
126
_testGame (
136
127
goldenFileName: '6_settings' ,
137
- frameColors: darkFrameIcons ,
128
+ frameColors: ScreenshotFrameColors .dark ,
138
129
child: const SettingsPage (),
139
130
);
140
131
});
0 commit comments