feat: Add user-specific group retrieval and enhance UI with dynamic theming

This commit is contained in:
Dayron
2025-10-11 20:45:14 +02:00
parent 7f4fd610c5
commit 9eb55c358e
5 changed files with 64 additions and 25 deletions

View File

@@ -3,11 +3,13 @@ class Message {
final DateTime timestamp;
final String senderId;
final String senderName;
final String groupId;
Message({
required this.text,
required this.timestamp,
required this.senderId,
required this.senderName,
required this.groupId,
});
}