ic_can_circle로 되어 있는 이미지 ic_can으로 변경
This commit is contained in:
@@ -40,7 +40,7 @@ struct ChatTabView: View {
|
|||||||
.setAppStep(step: .search)
|
.setAppStep(step: .search)
|
||||||
}
|
}
|
||||||
|
|
||||||
Image("ic_can_circle")
|
Image("ic_can")
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
AppState
|
AppState
|
||||||
.shared
|
.shared
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ struct HomeTabView: View {
|
|||||||
.setAppStep(step: .search)
|
.setAppStep(step: .search)
|
||||||
}
|
}
|
||||||
|
|
||||||
Image("ic_can_circle")
|
Image("ic_can")
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
AppState
|
AppState
|
||||||
.shared
|
.shared
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ struct LiveView: View {
|
|||||||
.setAppStep(step: .search)
|
.setAppStep(step: .search)
|
||||||
}
|
}
|
||||||
|
|
||||||
Image("ic_can_circle")
|
Image("ic_can")
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
AppState
|
AppState
|
||||||
.shared
|
.shared
|
||||||
|
|||||||
@@ -64,9 +64,10 @@ struct LiveNowItemView: View {
|
|||||||
|
|
||||||
if item.price > 0 {
|
if item.price > 0 {
|
||||||
HStack(spacing: 2) {
|
HStack(spacing: 2) {
|
||||||
Image("ic_can_circle")
|
Image("ic_can")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 16, height: 16)
|
.scaledToFit()
|
||||||
|
.frame(width: 16)
|
||||||
|
|
||||||
Text("\(item.price)")
|
Text("\(item.price)")
|
||||||
.font(.custom(Font.preRegular.rawValue, size: 14))
|
.font(.custom(Font.preRegular.rawValue, size: 14))
|
||||||
|
|||||||
@@ -88,9 +88,10 @@ struct LiveReservationItemView: View {
|
|||||||
|
|
||||||
if item.price > 0 {
|
if item.price > 0 {
|
||||||
HStack(spacing: 2) {
|
HStack(spacing: 2) {
|
||||||
Image("ic_can_circle")
|
Image("ic_can")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 12, height: 12)
|
.scaledToFit()
|
||||||
|
.frame(width: 12)
|
||||||
|
|
||||||
Text("\(item.price)")
|
Text("\(item.price)")
|
||||||
.font(.custom(Font.preRegular.rawValue, size: 12))
|
.font(.custom(Font.preRegular.rawValue, size: 12))
|
||||||
|
|||||||
@@ -100,9 +100,10 @@ struct MyLiveReservationItemView: View {
|
|||||||
|
|
||||||
if item.price > 0 {
|
if item.price > 0 {
|
||||||
HStack(spacing: 2) {
|
HStack(spacing: 2) {
|
||||||
Image("ic_can_circle")
|
Image("ic_can")
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 12, height: 12)
|
.scaledToFit()
|
||||||
|
.frame(width: 12)
|
||||||
|
|
||||||
Text("\(item.price)")
|
Text("\(item.price)")
|
||||||
.font(.custom(Font.preRegular.rawValue, size: 12))
|
.font(.custom(Font.preRegular.rawValue, size: 12))
|
||||||
|
|||||||
Reference in New Issue
Block a user