라이브 상세
- website, blog, instagram, youtube icon 색상 button 색으로 변경
|
@ -9,7 +9,7 @@
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"filename" : "ic_blog_purple.png",
|
"filename" : "ic_blog_blue.png",
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
After Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 1.1 KiB |
|
@ -9,7 +9,7 @@
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"filename" : "ic_website_purple.png",
|
"filename" : "ic_instagram_blue.png",
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
BIN
SodaLive/Resources/Assets.xcassets/ic_instagram_blue.imageset/ic_instagram_blue.png
vendored
Normal file
After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
|
@ -9,7 +9,7 @@
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"filename" : "ic_instagram_purple.png",
|
"filename" : "ic_website_blue.png",
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
BIN
SodaLive/Resources/Assets.xcassets/ic_website_blue.imageset/ic_website_blue.png
vendored
Normal file
After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 926 B |
|
@ -9,7 +9,7 @@
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"filename" : "ic_youtube_play_purple.png",
|
"filename" : "ic_youtube_play_blue.png",
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
BIN
SodaLive/Resources/Assets.xcassets/ic_youtube_play_blue.imageset/ic_youtube_play_blue.png
vendored
Normal file
After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 858 B |
|
@ -160,7 +160,7 @@ struct LiveDetailView: View {
|
||||||
Spacer()
|
Spacer()
|
||||||
|
|
||||||
if let websiteUrl = manager.websiteUrl, let url = URL(string: websiteUrl), UIApplication.shared.canOpenURL(url) {
|
if let websiteUrl = manager.websiteUrl, let url = URL(string: websiteUrl), UIApplication.shared.canOpenURL(url) {
|
||||||
Image("ic_website_purple")
|
Image("ic_website_blue")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 33.3, height: 33.3)
|
.frame(width: 33.3, height: 33.3)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
|
@ -169,7 +169,7 @@ struct LiveDetailView: View {
|
||||||
}
|
}
|
||||||
|
|
||||||
if let blogUrl = manager.blogUrl, let url = URL(string: blogUrl), UIApplication.shared.canOpenURL(url) {
|
if let blogUrl = manager.blogUrl, let url = URL(string: blogUrl), UIApplication.shared.canOpenURL(url) {
|
||||||
Image("ic_blog_purple")
|
Image("ic_blog_blue")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 33.3, height: 33.3)
|
.frame(width: 33.3, height: 33.3)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
|
@ -178,7 +178,7 @@ struct LiveDetailView: View {
|
||||||
}
|
}
|
||||||
|
|
||||||
if let instagramUrl = manager.instagramUrl, let url = URL(string: instagramUrl), UIApplication.shared.canOpenURL(url) {
|
if let instagramUrl = manager.instagramUrl, let url = URL(string: instagramUrl), UIApplication.shared.canOpenURL(url) {
|
||||||
Image("ic_instagram_purple")
|
Image("ic_instagram_blue")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 33.3, height: 33.3)
|
.frame(width: 33.3, height: 33.3)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
|
@ -187,7 +187,7 @@ struct LiveDetailView: View {
|
||||||
}
|
}
|
||||||
|
|
||||||
if let youtubeUrl = manager.youtubeUrl, let url = URL(string: youtubeUrl), UIApplication.shared.canOpenURL(url) {
|
if let youtubeUrl = manager.youtubeUrl, let url = URL(string: youtubeUrl), UIApplication.shared.canOpenURL(url) {
|
||||||
Image("ic_youtube_play_purple")
|
Image("ic_youtube_play_blue")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 33.3, height: 33.3)
|
.frame(width: 33.3, height: 33.3)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
|
|