feat: add ComingSoonScreen, integrate it into routing, and update chat avatar and home menu navigation

This commit is contained in:
pradeepkumar
2026-04-15 15:52:41 +05:30
parent df32a83692
commit fcb8f77004
4 changed files with 141 additions and 3 deletions

View File

@@ -1397,8 +1397,12 @@ class _ChatScreenState extends ConsumerState<ChatScreen>
),
),
const SizedBox(width: 10),
// Avatar
_buildMessageAvatar(null, senderName, 45),
// Avatar — use current user's avatar for sent messages
_buildMessageAvatar(
ref.read(authProvider).user?.avatar,
senderName,
45,
),
],
);
}