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
|
// SPDX-License-Identifier: Apache-2.0
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_hvac/provider.dart';
import 'package:numberpicker/numberpicker.dart';
import '../kuksa-server/vehicle_methods.dart';
import '../size.dart';
class LeftClimateScrollWidget extends ConsumerWidget {
LeftClimateScrollWidget({Key? key, required this.socket}) : super(key: key);
WebSocket socket;
@override
Widget build(BuildContext context, ref) {
final int _selectedTemp = ref.watch(LeftClimateTempProvider);
return SizedBox(
width: SizeConfig.screenWidth * 0.25,
height: SizeConfig.screenHeight * 0.30,
child: Container(
//color: Colors.red,
decoration: BoxDecoration(
border: Border.all(
color: Colors.white,
width: 2,
),
borderRadius: BorderRadius.circular(12),
),
child: NumberPicker(
minValue: 16,
maxValue: 33,
itemHeight: 100,
itemCount: 5,
value: _selectedTemp,
textMapper: (value) {
return value.toString() + '°';
},
onChanged: (value) {
ref.read(LeftClimateTempProvider.notifier).update(value);
VISS.set(
socket,
ref,
'Vehicle.Cabin.HVAC.Station.Row1.Left.Temperature',
value.toString());
VISS.set(
socket,
ref,
'Vehicle.Cabin.HVAC.Station.Row2.Left.Temperature',
value.toString());
},
selectedTextStyle: TextStyle(
color: Colors.lightBlueAccent,
fontWeight: FontWeight.w700,
fontSize: SizeConfig.fontsize * 4,
),
textStyle: TextStyle(
color: Colors.white54,
fontWeight: FontWeight.w700,
fontSize: SizeConfig.fontsize * 4,
))));
}
}
|