Skip to content

Instantly share code, notes, and snippets.

@anshupitlia
Created June 9, 2020 12:52
Show Gist options
  • Save anshupitlia/ee0875d89cc4c93cd25ca471a9001066 to your computer and use it in GitHub Desktop.
Save anshupitlia/ee0875d89cc4c93cd25ca471a9001066 to your computer and use it in GitHub Desktop.
Like Button hover
public class LikeButton {
...
private Reactions hoveredReaction;
public void setHoveredReaction(Reactions hoveredReaction) {
this.hoveredReaction = hoveredReaction;
}
...
public void onHover() {
if (hoveredReaction == Reactions.LIKE) {
System.out.println("Like");
} if (hoveredReaction == Reactions.LOVE) {
System.out.println("Love");
} if (hoveredReaction == Reactions.HAHA) {
System.out.println("Haha");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment