1
0
mirror of git://jb55.com/damus synced 2024-09-18 19:23:49 +00:00

reactions: add close button to custom reactions

Signed-off-by: William Casarin <jb55@jb55.com>
Changelog-Added: Add close button to custom reactions
This commit is contained in:
Suhail Saqan 2023-08-05 12:09:45 -05:00 committed by William Casarin
parent 92020e551b
commit 3908192fe2

View File

@ -290,6 +290,19 @@ struct LikeButton: View {
func reactions() -> some View {
HStack {
Button(action: {
withAnimation(.easeOut(duration: 0.2)) {
isReactionsVisible = false
showReactionsBG = 0
}
showEmojis = []
}) {
Image(systemName: "xmark.circle.fill")
.font(.body)
.foregroundColor(.gray)
}
.padding(.leading, 7.5)
ScrollView(.horizontal, showsIndicators: false) {
HStack(spacing: 20) {
ForEach(emojis, id: \.self) { emoji in
@ -303,7 +316,7 @@ struct LikeButton: View {
}
}
}
.padding(.horizontal, 20)
.padding(.trailing, 10)
}
}
}