show emojis above the link

This commit is contained in:
otsmr 2026-01-23 00:35:07 +01:00
parent 1b72ec5649
commit 3aa35a95c5

View file

@ -690,6 +690,8 @@ class _MediaViewerViewState extends State<MediaViewerView> {
), ),
), ),
), ),
if (currentMessage != null)
AdditionalMessageContent(currentMessage!),
if (currentMedia != null) if (currentMedia != null)
ReactionButtons( ReactionButtons(
show: showShortReactions, show: showShortReactions,
@ -708,8 +710,6 @@ class _MediaViewerViewState extends State<MediaViewerView> {
Positioned.fill( Positioned.fill(
child: EmojiFloatWidget(key: emojiKey), child: EmojiFloatWidget(key: emojiKey),
), ),
if (currentMessage != null)
AdditionalMessageContent(currentMessage!),
], ],
), ),
), ),