fix: change liked to the like icon for unliked posts

This commit is contained in:
Freek van de Ven 2024-05-23 13:19:08 +02:00
parent 013e82e61d
commit 6a522f3209
2 changed files with 2 additions and 1 deletions

View file

@ -16,6 +16,7 @@
- Add the iconbutton for image uploading back to the ReactionBottom
- Fix category key is correctly used for saving timeline posts and category title is shown everywhere
- Fix when clicking on post delete in the post screen of the userstory it will now navigate back to the timeline and delete the post
- Fix like icon being used for both like and unliked posts
## 3.0.1

View file

@ -257,7 +257,7 @@ class _TimelinePostWidgetState extends State<TimelinePostWidget> {
onTap: widget.onTapLike,
child: Container(
color: Colors.transparent,
child: widget.options.theme.likedIcon ??
child: widget.options.theme.likeIcon ??
Icon(
Icons.favorite_outline,
color: widget.options.theme.iconColor,