라이브 상세

- website, blog, instagram, youtube icon 색상 button 색으로 변경
This commit is contained in:
Yu Sung 2024-11-21 00:46:33 +09:00
parent f794eb0ebd
commit c1a4c534e1
13 changed files with 8 additions and 8 deletions

View File

@ -9,7 +9,7 @@
"scale" : "2x"
},
{
"filename" : "ic_blog_purple.png",
"filename" : "ic_blog_blue.png",
"idiom" : "universal",
"scale" : "3x"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -9,7 +9,7 @@
"scale" : "2x"
},
{
"filename" : "ic_website_purple.png",
"filename" : "ic_instagram_blue.png",
"idiom" : "universal",
"scale" : "3x"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -9,7 +9,7 @@
"scale" : "2x"
},
{
"filename" : "ic_instagram_purple.png",
"filename" : "ic_website_blue.png",
"idiom" : "universal",
"scale" : "3x"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 926 B

View File

@ -9,7 +9,7 @@
"scale" : "2x"
},
{
"filename" : "ic_youtube_play_purple.png",
"filename" : "ic_youtube_play_blue.png",
"idiom" : "universal",
"scale" : "3x"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 858 B

View File

@ -160,7 +160,7 @@ struct LiveDetailView: View {
Spacer()
if let websiteUrl = manager.websiteUrl, let url = URL(string: websiteUrl), UIApplication.shared.canOpenURL(url) {
Image("ic_website_purple")
Image("ic_website_blue")
.resizable()
.frame(width: 33.3, height: 33.3)
.onTapGesture {
@ -169,7 +169,7 @@ struct LiveDetailView: View {
}
if let blogUrl = manager.blogUrl, let url = URL(string: blogUrl), UIApplication.shared.canOpenURL(url) {
Image("ic_blog_purple")
Image("ic_blog_blue")
.resizable()
.frame(width: 33.3, height: 33.3)
.onTapGesture {
@ -178,7 +178,7 @@ struct LiveDetailView: View {
}
if let instagramUrl = manager.instagramUrl, let url = URL(string: instagramUrl), UIApplication.shared.canOpenURL(url) {
Image("ic_instagram_purple")
Image("ic_instagram_blue")
.resizable()
.frame(width: 33.3, height: 33.3)
.onTapGesture {
@ -187,7 +187,7 @@ struct LiveDetailView: View {
}
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()
.frame(width: 33.3, height: 33.3)
.onTapGesture {