From 9aea0e7837ae0ea3d417f3d2afd8554cd71f123d Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Wed, 25 Mar 2026 15:27:00 +0100
Subject: [PATCH] feat: show connection status detail in app bar during connect
---
lib/providers/providers.dart | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/lib/providers/providers.dart b/lib/providers/providers.dart
index b477237..fce1edf 100644
--- a/lib/providers/providers.dart
+++ b/lib/providers/providers.dart
@@ -58,6 +58,8 @@
final wsStatusProvider =
StateProvider<ConnectionStatus>((ref) => ConnectionStatus.disconnected);
+final connectionDetailProvider = StateProvider<String>((ref) => '');
+
// --- Sessions ---
final sessionsProvider = StateProvider<List<Session>>((ref) => []);
--
Gitblit v1.3.1