chore: Follow up stickers
This commit is contained in:
parent
b251a6a404
commit
b71023954d
1 changed files with 5 additions and 1 deletions
|
|
@ -89,7 +89,11 @@ class ImageBubble extends StatelessWidget {
|
||||||
return Material(
|
return Material(
|
||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius: borderRadius,
|
borderRadius: borderRadius,
|
||||||
side: BorderSide(color: Theme.of(context).dividerColor),
|
side: BorderSide(
|
||||||
|
color: event.messageType == MessageTypes.Sticker
|
||||||
|
? Colors.transparent
|
||||||
|
: Theme.of(context).dividerColor,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
onTap: () => _onTap(context),
|
onTap: () => _onTap(context),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue