
Big Reaction
From syxUI — written for both platforms, not translated between them.
A large sticker-style thumbs-up reaction message (Messenger pattern).
Chat · SwiftUI · iOS 17
- chat
- swiftui
The actual source
ChatEmojiMessage.swift
// Big Reaction · syxUI · https://syxui.dev/components/chat-emoji
// Free in any project. Keep this line and credit syxUI where a person can read it.
import SwiftUI
// Large sticker / big-reaction message (Messenger thumbs-up pattern)
struct ChatEmojiMessage: View {
var body: some View {
HStack {
Spacer()
Image(systemName: "hand.thumbsup.fill")
.font(.system(size: 68))
.foregroundStyle(Color(red: 0.0, green: 0.47, blue: 1.0))
}
}
}
iOS 17 · No dependencies
Dependencies
- SwiftUI
- No external dependencies
Requires iOS 17


