From: Lisandro Pérez Meyer Date: Thu, 23 Nov 2023 14:48:25 +0000 (-0300) Subject: Refactor: Dispaly user name X-Git-Tag: 17.90.0~16 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F67%2F29467%2F1;p=apps%2Fflutter-ics-homescreen.git Refactor: Dispaly user name Original from: Dominik Wawrzonek Bug-AGL: SPEC-4971 Change-Id: I58c7f3281260fecc04515b8b7680955ab066c9eb Signed-off-by: Lisandro Pérez Meyer --- 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), ), ], diff --git a/macos/Podfile.lock b/macos/Podfile.lock index f3a038b..09ccbe9 100644 --- a/macos/Podfile.lock +++ b/macos/Podfile.lock @@ -39,4 +39,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 236401fc2c932af29a9fcf0e97baeeb2d750d367 -COCOAPODS: 1.11.3 +COCOAPODS: 1.12.1