1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
// ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables
import 'package:gradient_borders/gradient_borders.dart';
import '../../../../export.dart';
class CarStatus extends ConsumerWidget {
const CarStatus({super.key});
@override
Widget build(BuildContext context, WidgetRef Ref) {
return Padding(
padding: const EdgeInsets.fromLTRB(0, 0, 0, 84),
child: SizedBox(
height: 440,
width: 652,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const LeftCarStatus(),
Padding(
padding: const EdgeInsets.symmetric(
horizontal: 47.0), // Adding horizontal padding
child: SvgPicture.asset(
'assets/Car Illustration.svg',
width: 625,
height: 440,
fit: BoxFit.fitHeight,
),
),
const RightCarStatus(),
],
),
),
);
}
}
class LeftCarStatus extends ConsumerWidget {
const LeftCarStatus({
super.key,
});
@override
Widget build(BuildContext context, WidgetRef ref) {
final frontLeftTire =
ref.watch(vehicleProvider.select((vehicle) => vehicle.frontLeftTire));
final rearLeftTire =
ref.watch(vehicleProvider.select((vehicle) => vehicle.rearLeftTire));
final unit =
ref.watch(unitStateProvider.select((unit) => unit.pressureUnit));
String frontLeftTireString = "";
String rearLeftTireString = "";
if (unit == PressureUnit.psi) {
frontLeftTireString = (frontLeftTire * 0.145038).toStringAsFixed(1);
rearLeftTireString = (rearLeftTire * 0.145038).toStringAsFixed(1);
} else {
frontLeftTireString = frontLeftTire.toString();
rearLeftTireString = rearLeftTire.toString();
}
return Column(
mainAxisAlignment: MainAxisAlignment.spaceAround,
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
TirePressureProgressIndicator(value: frontLeftTire.toDouble()),
Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Text(
frontLeftTireString,
style: GoogleFonts.brunoAce(
textStyle: TextStyle(color: Colors.white, fontSize: 44),
),
),
SizedBox(
width: 5,
),
TirePressureUnitWidget(),
],
),
],
),
ChildLockLeft(),
Column(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
TirePressureProgressIndicator(value: rearLeftTire.toDouble()),
Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Text(
rearLeftTireString,
style: GoogleFonts.brunoAce(
textStyle: TextStyle(color: Colors.white, fontSize: 44),
),
),
SizedBox(
width: 5,
),
TirePressureUnitWidget(),
],
),
],
),
],
);
}
}
class RightCarStatus extends ConsumerWidget {
const RightCarStatus({
super.key,
});
@override
Widget build(BuildContext context, WidgetRef ref) {
final frontRightTire =
ref.watch(vehicleProvider.select((vehicle) => vehicle.frontRightTire));
final rearRightTire =
ref.watch(vehicleProvider.select((vehicle) => vehicle.rearRightTire));
final unit =
ref.watch(unitStateProvider.select((unit) => unit.pressureUnit));
String frontRightTireString = "";
String rearRightTireString = "";
if (unit == PressureUnit.psi) {
frontRightTireString = (frontRightTire * 0.145038).toStringAsFixed(1);
rearRightTireString = (rearRightTire * 0.145038).toStringAsFixed(1);
} else {
frontRightTireString = frontRightTire.toString();
rearRightTireString = rearRightTire.toString();
}
return Column(
mainAxisAlignment: MainAxisAlignment.spaceAround,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TirePressureProgressIndicator(value: frontRightTire.toDouble()),
Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Text(
frontRightTireString,
style: GoogleFonts.brunoAce(
textStyle: TextStyle(color: Colors.white, fontSize: 44),
),
),
SizedBox(
width: 5,
),
TirePressureUnitWidget(),
],
),
],
),
const ChildLockRight(),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TirePressureProgressIndicator(value: rearRightTire.toDouble()),
Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Text(
rearRightTireString,
style: GoogleFonts.brunoAce(
textStyle: TextStyle(color: Colors.white, fontSize: 44),
),
),
SizedBox(
width: 5,
),
TirePressureUnitWidget(),
],
),
],
),
],
);
}
}
class TirePressureProgressIndicator extends StatelessWidget {
final double value;
const TirePressureProgressIndicator({
Key? key,
required this.value, // Require the value to be passed
}) : super(key: key);
@override
Widget build(BuildContext context) {
// Calculate the width as a percentage of the full width (74 in this case)
final double fillWidth = (value / 35) * 74;
return Stack(
alignment: AlignmentDirectional.centerStart,
children: [
Container(
width: 100,
height: 24,
decoration: BoxDecoration(
border: GradientBoxBorder(
gradient:
LinearGradient(colors: const [Colors.white30, Colors.white]),
),
),
),
Positioned(
left: 3,
child: Container(
width: fillWidth, // Use the calculated width here
height: 18, // Match the height of the progress bar
decoration: BoxDecoration(
gradient: LinearGradient(
colors: const [AGLDemoColors.periwinkleColor, Colors.white],
stops: [
0.8,
1,
],
),
),
),
),
],
);
}
}
class TirePressureUnitWidget extends ConsumerWidget {
const TirePressureUnitWidget({
super.key,
});
@override
Widget build(BuildContext context, WidgetRef ref) {
final unit =
ref.watch(unitStateProvider.select((unit) => unit.pressureUnit));
return Padding(
padding: const EdgeInsets.only(left: 4.0, right: 1.0, bottom: 2.0),
child: Text(
unit == PressureUnit.kilopascals ? 'kPa' : 'PSI',
style: TextStyle(
fontSize: 26,
),
),
);
}
}
|