chore: Follow up stickers

This commit is contained in:
krille-chan 2023-12-26 16:43:19 +01:00
parent b251a6a404
commit b71023954d
No known key found for this signature in database

View file

@ -89,7 +89,11 @@ class ImageBubble extends StatelessWidget {
return Material(
shape: RoundedRectangleBorder(
borderRadius: borderRadius,
side: BorderSide(color: Theme.of(context).dividerColor),
side: BorderSide(
color: event.messageType == MessageTypes.Sticker
? Colors.transparent
: Theme.of(context).dividerColor,
),
),
child: InkWell(
onTap: () => _onTap(context),