diff --git a/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/btn_make_live.png b/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/btn_make_live.png deleted file mode 100644 index 2d5e53c..0000000 Binary files a/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/btn_make_live.png and /dev/null differ diff --git a/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/Contents.json b/SodaLive/Resources/Assets.xcassets/ic_make_live.imageset/Contents.json similarity index 87% rename from SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/Contents.json rename to SodaLive/Resources/Assets.xcassets/ic_make_live.imageset/Contents.json index 0190159..8842006 100644 --- a/SodaLive/Resources/Assets.xcassets/btn_make_live.imageset/Contents.json +++ b/SodaLive/Resources/Assets.xcassets/ic_make_live.imageset/Contents.json @@ -9,7 +9,7 @@ "scale" : "2x" }, { - "filename" : "btn_make_live.png", + "filename" : "ic_make_live.png", "idiom" : "universal", "scale" : "3x" } diff --git a/SodaLive/Resources/Assets.xcassets/ic_make_live.imageset/ic_make_live.png b/SodaLive/Resources/Assets.xcassets/ic_make_live.imageset/ic_make_live.png new file mode 100644 index 0000000..087aef9 Binary files /dev/null and b/SodaLive/Resources/Assets.xcassets/ic_make_live.imageset/ic_make_live.png differ diff --git a/SodaLive/Sources/Chat/Talk/Room/Message/MessageInputView.swift b/SodaLive/Sources/Chat/Talk/Room/Message/MessageInputView.swift deleted file mode 100644 index 00bb5d8..0000000 --- a/SodaLive/Sources/Chat/Talk/Room/Message/MessageInputView.swift +++ /dev/null @@ -1,18 +0,0 @@ -// -// MessageInputView.swift -// SodaLive -// -// Created by klaus on 9/3/25. -// - -import SwiftUI - -struct MessageInputView: View { - var body: some View { - Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) - } -} - -#Preview { - MessageInputView() -} diff --git a/SodaLive/Sources/Live/LiveView.swift b/SodaLive/Sources/Live/LiveView.swift index feb7d45..482b98b 100644 --- a/SodaLive/Sources/Live/LiveView.swift +++ b/SodaLive/Sources/Live/LiveView.swift @@ -127,16 +127,27 @@ struct LiveView: View { } if !appState.isShowPlayer && role == MemberRole.CREATOR.rawValue { - Image("btn_make_live") - .padding(.trailing, 16) - .padding(.bottom, 16) - .onTapGesture { - if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty { - AppState.shared.setAppStep(step: .createLive(timeSettingMode: .NOW, onSuccess: onCreateSuccess)) - } else { - AppState.shared.setAppStep(step: .login) - } + HStack(spacing: 5) { + Image("ic_make_live") + .resizable() + .frame(width: 20, height: 20) + + Text("라이브 만들기") + .font(.custom(Font.preBold.rawValue, size: 13.3)) + .foregroundColor(.white) + } + .padding(13.3) + .background(Color(hex: "3bb9f1")) + .cornerRadius(44) + .padding(.trailing, 16) + .padding(.bottom, 16) + .onTapGesture { + if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty { + AppState.shared.setAppStep(step: .createLive(timeSettingMode: .NOW, onSuccess: onCreateSuccess)) + } else { + AppState.shared.setAppStep(step: .login) } + } } }