라이브 상단에 메시지 버튼 추가
This commit is contained in:
21
SodaLive/Resources/Assets.xcassets/ic_message.imageset/Contents.json
vendored
Normal file
21
SodaLive/Resources/Assets.xcassets/ic_message.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "ic_message.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
BIN
SodaLive/Resources/Assets.xcassets/ic_message.imageset/ic_message.png
vendored
Normal file
BIN
SodaLive/Resources/Assets.xcassets/ic_message.imageset/ic_message.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
@@ -23,7 +23,14 @@ struct SectionRecommendLiveView: View {
|
||||
|
||||
Text("라이브")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
.foregroundColor(.grayee)
|
||||
|
||||
Spacer()
|
||||
|
||||
Image("ic_message")
|
||||
.onTapGesture {
|
||||
AppState.shared.setAppStep(step: .message)
|
||||
}
|
||||
}
|
||||
.frame(width: screenSize().width - 26.7, alignment: .leading)
|
||||
|
||||
|
@@ -13,8 +13,11 @@ struct MessageView: View {
|
||||
|
||||
var body: some View {
|
||||
GeometryReader { geo in
|
||||
ZStack {
|
||||
Color.black
|
||||
|
||||
VStack {
|
||||
HomeNavigationBar(title: "메시지") {}
|
||||
DetailNavigationBar(title: "메시지")
|
||||
|
||||
Tab()
|
||||
|
||||
@@ -33,6 +36,7 @@ struct MessageView: View {
|
||||
.frame(width: geo.size.width, height: geo.size.height)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ViewBuilder
|
||||
func Tab() -> some View {
|
||||
|
Reference in New Issue
Block a user