mirror of
https://github.com/Iconica-Development/flutter_timeline.git
synced 2025-05-18 18:13:46 +02:00
fix: change liked to the like icon for unliked posts
This commit is contained in:
parent
013e82e61d
commit
6a522f3209
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue