Messaging

Implemented Chat Screens, Profile Pages, Search Pages
WIP: User profile, new chat button
Intended: Groups, Calls, Voice Messages
Properly deleting chats, offline storage of messages
This commit is contained in:
2025-03-26 13:41:56 +00:00
parent 1a74d16d85
commit 1ba9e981e1
18 changed files with 812 additions and 236 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ class ProfilePage extends StatelessWidget {
return Builder(builder: (BuildContext _context) {
SnackBarService.instance.buildContext = _context;
_auth = Provider.of<MessagingProviders>(_context);
return StreamBuilder<Users>(
return StreamBuilder<User>(
stream: MessagingProviders.instance.getUser(_auth.user!.$id),
builder: (_, _snapshot) {
var _userData = _snapshot.data;