1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Increase like icon size on posts

This commit is contained in:
2020-04-15 19:26:51 +02:00
parent f8a70faf28
commit e777c4c991
2 changed files with 7 additions and 2 deletions

View File

@ -209,7 +209,10 @@ class _PostTileState extends State<PostTile> {
children: <Widget>[
// Like button
Center(
child: LikeWidget(likeElement: widget.post),
child: LikeWidget(
likeElement: widget.post,
buttonIconSize: null,
),
),
],
),