feat: 고객센터 상단 로고 변경
This commit is contained in:
21
SodaLive/Resources/Assets.xcassets/ic_logo_service_center.imageset/Contents.json
vendored
Normal file
21
SodaLive/Resources/Assets.xcassets/ic_logo_service_center.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"images" : [
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "1x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "2x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename" : "ic_logo_service_center.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "3x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info" : {
|
||||||
|
"author" : "xcode",
|
||||||
|
"version" : 1
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
SodaLive/Resources/Assets.xcassets/ic_logo_service_center.imageset/ic_logo_service_center.png
vendored
Normal file
BIN
SodaLive/Resources/Assets.xcassets/ic_logo_service_center.imageset/ic_logo_service_center.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
@@ -18,7 +18,7 @@ struct ServiceCenterView: View {
|
|||||||
|
|
||||||
ScrollView(.vertical, showsIndicators: false) {
|
ScrollView(.vertical, showsIndicators: false) {
|
||||||
VStack(spacing: 0) {
|
VStack(spacing: 0) {
|
||||||
Image("ic_logo")
|
Image("ic_logo_service_center")
|
||||||
.resizable()
|
.resizable()
|
||||||
.scaledToFill()
|
.scaledToFill()
|
||||||
.frame(width: 106.7, height: 106.7, alignment: .top)
|
.frame(width: 106.7, height: 106.7, alignment: .top)
|
||||||
@@ -26,6 +26,7 @@ struct ServiceCenterView: View {
|
|||||||
Text("고객센터")
|
Text("고객센터")
|
||||||
.font(.custom(Font.bold.rawValue, size: 20))
|
.font(.custom(Font.bold.rawValue, size: 20))
|
||||||
.foregroundColor(.grayee)
|
.foregroundColor(.grayee)
|
||||||
|
.padding(.top, 20)
|
||||||
|
|
||||||
HStack(spacing: 13.3) {
|
HStack(spacing: 13.3) {
|
||||||
Image("ic_service_center_kakao")
|
Image("ic_service_center_kakao")
|
||||||
@@ -38,9 +39,10 @@ struct ServiceCenterView: View {
|
|||||||
.foregroundColor(.black)
|
.foregroundColor(.black)
|
||||||
}
|
}
|
||||||
.padding(.vertical, 14)
|
.padding(.vertical, 14)
|
||||||
.frame(width: screenSize().width - 26.7)
|
.frame(maxWidth: .infinity)
|
||||||
.background(Color(hex: "ffe368"))
|
.background(Color(hex: "ffe368"))
|
||||||
.cornerRadius(8)
|
.cornerRadius(8)
|
||||||
|
.padding(.horizontal, 13.3)
|
||||||
.padding(.top, 20)
|
.padding(.top, 20)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
UIApplication.shared.open(URL(string: "http://pf.kakao.com/_lkxgxhG/chat")!)
|
UIApplication.shared.open(URL(string: "http://pf.kakao.com/_lkxgxhG/chat")!)
|
||||||
|
|||||||
Reference in New Issue
Block a user