메인 하단 탭 - 아이콘 색상, 글자 색상 변경

This commit is contained in:
Yu Sung 2024-01-03 12:54:49 +09:00
parent 5fcf4c03c0
commit 86491cce95
7 changed files with 10 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 998 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 925 B

After

Width:  |  Height:  |  Size: 987 B

View File

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