From 7757825e273ace6049813b2bdd7da2919e0a6e71 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Wed, 10 Jun 2026 10:40:21 -0400 Subject: [PATCH] add placeholder while profile loading --- lib/widgets/user_bottom_sheet.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/widgets/user_bottom_sheet.dart b/lib/widgets/user_bottom_sheet.dart index 86c7fb2..d83fbb1 100644 --- a/lib/widgets/user_bottom_sheet.dart +++ b/lib/widgets/user_bottom_sheet.dart @@ -131,9 +131,11 @@ class UserBottomSheet extends ConsumerWidget { ref .watch(ProfileController.provider(userId)) .betterWhen( - loading: SizedBox.shrink, + loading: () => Text(""), data: (profile) => Column( children: [ + if (profile.timezone == null && profile.pronouns.isEmpty) + Text(""), Wrap( crossAxisAlignment: .center, alignment: .center,