Better dashboard design for large screen (and mobile device)

This commit is contained in:
2024-09-05 20:25:17 +08:00
parent a75f42e440
commit 1a0721ba3a
6 changed files with 388 additions and 311 deletions

View File

@ -72,6 +72,15 @@ class Channel {
'realm_id': realmId,
'is_encrypted': isEncrypted,
};
@override
bool operator ==(Object other) {
if (other is! Channel) return false;
return id == other.id;
}
@override
int get hashCode => id;
}
class ChannelMember {