라이브 상세

- 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

@@ -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 {