Skip to content

Commit 25faddb

Browse files
committed
[fix] Change sample app url
1 parent 6df296e commit 25faddb

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Example/BluxClient/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ struct ContentView: View {
153153
}
154154
.onChange(of: appState.selectedProductId) { productId in
155155
if let productId = productId {
156-
webViewURL = "https://www.musinsa.com/app/goods/\(productId)"
156+
webViewURL = "https://data.zaikorea.org/ai-demo/app_big_banner.jpeg"
157157
isWebViewPresented = true
158158
appState.selectedProductId = nil
159159
}

Example/BluxClient/HomeView.swift

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
import SwiftUI
99

1010
struct HomeView: View {
11-
@State var bigBanner: String = "https://image.msscdn.net/images/plan_top_img/2024051310514900000066733.jpg"
11+
@State var bigBanner: String = "https://data.zaikorea.org/ai-demo/app_big_banner.jpeg"
1212
@State var items: [Item] = [
13-
Item(id: "4109007", brand: "아식스", name: "젤-벤처 6 SPS", imageUrl: "https://image.msscdn.net/images/goods_img/20240507/4109007/4109007_17150597520979_500.jpg", price: 119000),
14-
Item(id: "3074122", brand: "슬로우애시드", name: "러스티 로고 반팔티셔츠", imageUrl: "https://image.msscdn.net/images/goods_img/20230209/3074122/3074122_16867066020814_125.jpg", price: 19500),
15-
Item(id: "2285512", brand: "캘빈클라인 진", name: "슬림핏 인스티튜서널", imageUrl: "https://image.msscdn.net/images/prd_img/20211229/2285512/detail_2285512_16805008310503_500.jpg", price: 31290, sale: 40),
16-
Item(id: "716244", brand: "반스", name: "어센티 44 DX", imageUrl: "https://image.msscdn.net/images/goods_img/20180213/716244/716244_2_125.jpg", price: 29990, sale: 68),
17-
Item(id: "3966892", brand: "뉴발란스", name: "UNI HERITAGE 반팔티 (WHITE)", imageUrl: "https://image.msscdn.net/images/goods_img/20240319/3966892/3966892_17119349302381_125.jpg", price: 49900),
18-
Item(id: "1944612", brand: "소버먼트", name: "컷 헤비 피그먼트 티셔츠-차콜-", imageUrl: "https://image.msscdn.net/images/goods_img/20210511/1944612/1944612_17153307977903_500.jpg", price: 36600, sale: 40),
13+
Item(id: "4109007", brand: "아식스", name: "젤-벤처 6 SPS", imageUrl: "https://data.zaikorea.org/ai-demo/asics_shoes.jpeg", price: 119000),
14+
Item(id: "3074122", brand: "슬로우애시드", name: "러스티 로고 반팔티셔츠", imageUrl: "https://data.zaikorea.org/ai-demo/slowacid_top.jpeg", price: 19500),
15+
Item(id: "2285512", brand: "캘빈클라인 진", name: "슬림핏 인스티튜서널", imageUrl: "https://data.zaikorea.org/ai-demo/calvinklein_top.jpeg", price: 31290, sale: 40),
16+
Item(id: "716244", brand: "반스", name: "어센티 44 DX", imageUrl: "https://data.zaikorea.org/ai-demo/vans_shoes.jpeg", price: 29990, sale: 68),
17+
Item(id: "3966892", brand: "뉴발란스", name: "UNI HERITAGE 반팔티 (WHITE)", imageUrl: "https://data.zaikorea.org/ai-demo/newbalance_top.jpeg", price: 49900),
18+
Item(id: "1944612", brand: "소버먼트", name: "컷 헤비 피그먼트 티셔츠-차콜-", imageUrl: "https://data.zaikorea.org/ai-demo/soverment_top.jpeg", price: 36600, sale: 40),
1919
]
2020

2121
var body: some View {

Example/BluxClient/WebView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import SwiftUI
99
import WebKit
1010

1111
struct WebView: UIViewRepresentable {
12-
var url = "https://www.musinsa.com/app/goods/4069411"
12+
var url = ""
1313

1414
func makeUIView(context: Context) -> WKWebView {
1515
guard let url = URL(string: url) else {

0 commit comments

Comments
 (0)