Add the ability to see reactors on hover
This commit is contained in:
parent
5f5ad911c2
commit
116649e8d7
1 changed files with 29 additions and 25 deletions
|
|
@ -90,6 +90,8 @@ class MessageWrapper extends ConsumerWidget {
|
|||
clientState!.userId,
|
||||
);
|
||||
return SizedBox(
|
||||
child: Tooltip(
|
||||
message: reactors.join(", "),
|
||||
child: ChoiceChip(
|
||||
showCheckmark: false,
|
||||
selected: selected,
|
||||
|
|
@ -104,7 +106,8 @@ class MessageWrapper extends ConsumerWidget {
|
|||
headers: ref.headers,
|
||||
Uri.parse(reaction)
|
||||
.mxcToHttps(
|
||||
clientState.homeserverUrl!,
|
||||
clientState
|
||||
.homeserverUrl!,
|
||||
)
|
||||
.toString(),
|
||||
ref.watch(
|
||||
|
|
@ -118,6 +121,7 @@ class MessageWrapper extends ConsumerWidget {
|
|||
),
|
||||
onSelected: (value) {}, // TODO
|
||||
),
|
||||
),
|
||||
);
|
||||
}).toList(),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue