From 9ba227f63a5f83055910b502ca90bb523950c77b Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Sat, 31 Dec 2022 00:34:31 -0500 Subject: Rework Riverpod provider usage Replace the single Riverpod provider for all vehicle signals with separate ones for each required signal used directly in the widgets that require them. This is more in line with recommended Riverpod practice, and should avoids driving full widget tree rebuilds on every signal received. Bug-AGL: SPEC-4660 Signed-off-by: Scott Murray Change-Id: Ibe1ff26f8cd95cbe9cbb477feaf31c9f4919bf6a --- lib/Kuksa-server/intial_connection.dart | 38 --------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 lib/Kuksa-server/intial_connection.dart (limited to 'lib/Kuksa-server/intial_connection.dart') diff --git a/lib/Kuksa-server/intial_connection.dart b/lib/Kuksa-server/intial_connection.dart deleted file mode 100644 index dfac031..0000000 --- a/lib/Kuksa-server/intial_connection.dart +++ /dev/null @@ -1,38 +0,0 @@ -// SPDX-License-Identifier: Apache-2.0 -import 'dart:io'; -import 'package:dashboard_app/Kuksa-server/vehicle_config.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_riverpod/flutter_riverpod.dart'; - -import 'onBoarding_page.dart'; - -class InitialScreen extends ConsumerWidget { - InitialScreen({Key? key, required this.client}) : super(key: key); - final HttpClient client; - late WebSocket socket; - - @override - Widget build(BuildContext context, ref) { - final sockConnect = ref.watch(sockConnectprovider(client)); - - return sockConnect.when( - data: (socket) { - this.socket = socket; - this.socket.pingInterval = const Duration(seconds: 2); - return OnBoardingPage(client: client, socket: this.socket); - }, - error: (e, stk) { - print(e); - ref.refresh(sockConnectprovider(client)); - return const Scaffold( - backgroundColor: Colors.black, - body: Center(child: Text('error',style: TextStyle(color: Colors.white),)), - ); - }, - loading: () => const Scaffold( - backgroundColor: Colors.black, - body: Center(child: Text('loading',style: TextStyle(color: Colors.white))), - ), - ); - } -} \ No newline at end of file -- cgit