summaryrefslogtreecommitdiffstats
path: root/lib/provider.dart
diff options
context:
space:
mode:
authorHritik Chouhan <hritikc3961@gmail.com>2022-09-01 20:46:09 +0200
committerHritik Chouhan <hritikc3961@gmail.com>2022-09-16 18:24:43 +0200
commit10945b8056eb2b228c156918a3505882a49a79b8 (patch)
treec8190f53a85ceaf31d9b978cb3d61941bb7a8bc4 /lib/provider.dart
parentcb0d87bfb6b6daf9ad22ab76d333e70451602406 (diff)
Upload Flutter-Dashboard app for IVI
Flutter Dashboard app which shows Tyres Pressure, Child lock status , Current Location,Speed,RPM,outside and inside Temperature , Average fuel Consumption. update UI and Removed Unused code. Moved kuksa authtoken and mapbox access token and other things to config file. Bug-AGL: SPEC-4547 Signed-off-by: Hritik Chouhan <hritikc3961@gmail.com> Change-Id: I14f42ed453c8279a1e89f8835d2b24e07e4ce376
Diffstat (limited to 'lib/provider.dart')
-rw-r--r--lib/provider.dart41
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/provider.dart b/lib/provider.dart
new file mode 100644
index 0000000..4c9ed0a
--- /dev/null
+++ b/lib/provider.dart
@@ -0,0 +1,41 @@
+// SPDX-License-Identifier: Apache-2.0
+
+import 'dart:async';
+import 'dart:math';
+
+import 'package:flutter_riverpod/flutter_riverpod.dart';
+
+final fuelProvider = StateNotifierProvider<fuel,double>((ref) =>
+ fuel(),
+);
+
+class fuel extends StateNotifier<double>{
+ late Timer timer;
+ fuel() : super(0.2){
+
+ Timer.periodic(Duration(seconds: 5), (timer) {
+ double num = Random().nextInt(100).toDouble();
+ update(num);
+ });
+ }
+ void update(value){
+ state = value;
+ }
+}
+
+final DateTimeProvider = StateNotifierProvider<datetime,DateTime>((ref) =>
+ datetime(),
+);
+
+class datetime extends StateNotifier<DateTime>{
+ datetime() : super(DateTime.now()){
+
+ Timer.periodic(Duration(seconds: 30), (timer) {
+ DateTime _now = DateTime.now();
+ update(_now);
+ });
+ }
+ void update(value){
+ state = value;
+ }
+}