From 8558b640173de8fbfe37111b29e4fc68dbc80da1 Mon Sep 17 00:00:00 2001 From: Lisandro Pérez Meyer Date: Thu, 23 Nov 2023 11:48:25 -0300 Subject: Refactor: Dispaly user name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original from: Dominik Wawrzonek Bug-AGL: SPEC-4971 Change-Id: I58c7f3281260fecc04515b8b7680955ab066c9eb Signed-off-by: Lisandro Pérez Meyer --- lib/presentation/common_widget/custom_top_bar.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/presentation') diff --git a/lib/presentation/common_widget/custom_top_bar.dart b/lib/presentation/common_widget/custom_top_bar.dart index 900f8be..52e1e58 100644 --- a/lib/presentation/common_widget/custom_top_bar.dart +++ b/lib/presentation/common_widget/custom_top_bar.dart @@ -18,7 +18,8 @@ class CustomTopBarState extends ConsumerState { Widget build(BuildContext context) { final singnalsConnection = ref.watch(signalsProvider.select((sinals) => sinals)); - final user = ref.watch(usersProvider.select((user) => user)); + final userName = + ref.watch(usersProvider.select((user) => user.selectedUser.name)); DateFormat dateFormat = DateFormat('hh:mm a'); final currentime = ref.watch(currentTimeProvider); @@ -44,7 +45,7 @@ class CustomTopBarState extends ConsumerState { child: SizedBox(width: 16), // 16px space ), TextSpan( - text: user.selectedUser.name, + text: userName, style: const TextStyle(fontWeight: FontWeight.bold), ), ], -- cgit 1.2.3-korg