Merge branch 'main' into flutter-3.22
This commit is contained in:
commit
d9edf9f05b
17 changed files with 403 additions and 336 deletions
|
|
@ -36,7 +36,8 @@ class ChatDetailsView extends StatelessWidget {
|
|||
}
|
||||
|
||||
return StreamBuilder(
|
||||
stream: room.onUpdate.stream,
|
||||
stream: room.client.onRoomState.stream
|
||||
.where((update) => update.roomId == room.id),
|
||||
builder: (context, snapshot) {
|
||||
var members = room.getParticipants().toList()
|
||||
..sort((b, a) => a.powerLevel.compareTo(b.powerLevel));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue