메인 하단 탭 - 아이콘 색상, 글자 색상 변경
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 998 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 925 B After Width: | Height: | Size: 987 B |
@@ -34,8 +34,8 @@ struct BottomTabView: View {
|
|||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
currentTab == .content ?
|
currentTab == .content ?
|
||||||
Color(hex: "9970ff") :
|
Color(hex: "3bb9f1") :
|
||||||
Color(hex: "909090")
|
Color(hex: "bbbbbb")
|
||||||
},
|
},
|
||||||
width: tabWidth
|
width: tabWidth
|
||||||
)
|
)
|
||||||
@@ -59,8 +59,8 @@ struct BottomTabView: View {
|
|||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
currentTab == .live ?
|
currentTab == .live ?
|
||||||
Color(hex: "9970ff") :
|
Color(hex: "3bb9f1") :
|
||||||
Color(hex: "909090")
|
Color(hex: "bbbbbb")
|
||||||
},
|
},
|
||||||
width: tabWidth
|
width: tabWidth
|
||||||
)
|
)
|
||||||
@@ -84,8 +84,8 @@ struct BottomTabView: View {
|
|||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
currentTab == .explorer ?
|
currentTab == .explorer ?
|
||||||
Color(hex: "9970ff") :
|
Color(hex: "3bb9f1") :
|
||||||
Color(hex: "909090")
|
Color(hex: "bbbbbb")
|
||||||
},
|
},
|
||||||
width: tabWidth
|
width: tabWidth
|
||||||
)
|
)
|
||||||
@@ -109,8 +109,8 @@ struct BottomTabView: View {
|
|||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
currentTab == .message ?
|
currentTab == .message ?
|
||||||
Color(hex: "9970ff") :
|
Color(hex: "3bb9f1") :
|
||||||
Color(hex: "909090")
|
Color(hex: "bbbbbb")
|
||||||
},
|
},
|
||||||
width: tabWidth
|
width: tabWidth
|
||||||
)
|
)
|
||||||
@@ -134,8 +134,8 @@ struct BottomTabView: View {
|
|||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
currentTab == .mypage ?
|
currentTab == .mypage ?
|
||||||
Color(hex: "9970ff") :
|
Color(hex: "3bb9f1") :
|
||||||
Color(hex: "909090")
|
Color(hex: "bbbbbb")
|
||||||
},
|
},
|
||||||
width: tabWidth
|
width: tabWidth
|
||||||
)
|
)
|
||||||
|