chore: Follow up seen by row
This commit is contained in:
parent
10a138bb6f
commit
ecd13b7efc
1 changed files with 4 additions and 1 deletions
|
|
@ -24,7 +24,10 @@ class SeenByRow extends StatelessWidget {
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
builder: (context, asyncSnapshot) {
|
builder: (context, asyncSnapshot) {
|
||||||
final seenByUsers = event.receipts.map((r) => r.user).toList();
|
final seenByUsers = event.receipts
|
||||||
|
.map((r) => r.user)
|
||||||
|
.where((user) => user.id != event.room.client.userID)
|
||||||
|
.toList();
|
||||||
return Container(
|
return Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue