blob: c933fdd45af24d9f5145460188784d32d55bfea9 (
plain)
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
|
// SPDX-License-Identifier: Apache-2.0
import 'package:flutter_riverpod/flutter_riverpod.dart';
final LeftSlider = StateNotifierProvider<leftclimate, int>(
(ref) => leftclimate(),
);
class leftclimate extends StateNotifier<int> {
leftclimate() : super(0);
Future<void> update(value) async {
state = value;
}
}
final RightSlider = StateNotifierProvider<Rightclimate, int>(
(ref) => Rightclimate(),
);
class Rightclimate extends StateNotifier<int> {
Rightclimate() : super(0);
Future<void> update(value) async {
state = value;
}
}
final fanSpeedProvider =
StateNotifierProvider<fanslider, int>((ref) => fanslider());
class fanslider extends StateNotifier<int> {
fanslider() : super(30);
void update(value) {
state = value;
}
}
|