feat(creator): 팬Talk 탭을 추가한다

This commit is contained in:
Yu Sung
2026-07-05 00:44:03 +09:00
parent 7c98af0c7d
commit f5ead536ea
16 changed files with 1250 additions and 28 deletions

View File

@@ -0,0 +1,21 @@
import SwiftUI
struct CreatorChannelFloatingIconButton: View {
let imageName: String
let backgroundColor: Color
let accessibilityLabel: String
let action: () -> Void
var body: some View {
Button(action: action) {
Image(imageName)
.resizable()
.frame(width: 38, height: 38)
.frame(width: 66, height: 66)
.background(backgroundColor)
.clipShape(Circle())
}
.accessibilityLabel(accessibilityLabel)
.buttonStyle(.plain)
}
}