File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -98,11 +98,12 @@ class EventTrackerItem extends StatelessWidget {
98
98
child: GestureDetector (
99
99
child: Container (
100
100
height: 146 ,
101
- decoration: const BoxDecoration (
102
- borderRadius: BorderRadius .all (
103
- Radius .circular (5 ),
101
+ decoration: BoxDecoration (
102
+ borderRadius: const BorderRadius .only (
103
+ bottomLeft: Radius .circular (5 ),
104
+ bottomRight: Radius .circular (5 ),
104
105
),
105
- color: Color (0xff1d1d28 ),
106
+ color: useDarkMode ? const Color (0xff1d1d28 ) : Colors .black ,
106
107
),
107
108
child: Column (
108
109
mainAxisAlignment: MainAxisAlignment .center,
@@ -188,8 +189,8 @@ class EventTrackerItem extends StatelessWidget {
188
189
),
189
190
),
190
191
child: Row (
191
- children: [
192
- const Padding (
192
+ children: const [
193
+ Padding (
193
194
padding: EdgeInsets .all (10 ),
194
195
child: Text (
195
196
'RACE HUB' ,
@@ -198,10 +199,10 @@ class EventTrackerItem extends StatelessWidget {
198
199
),
199
200
),
200
201
),
201
- const Spacer (),
202
+ Spacer (),
202
203
Icon (
203
204
Icons .arrow_forward_rounded,
204
- color: useDarkMode ? Colors .white : Colors .black ,
205
+ color: Colors .white,
205
206
),
206
207
],
207
208
),
You can’t perform that action at this time.
0 commit comments