나머지 .font를 .appFont로 변경하여 한국어 텍스트와 다른 언어 텍스트에 다른 폰트 적용
This commit is contained in:
@@ -464,7 +464,7 @@ struct CharacterExpandableTextView: View {
|
||||
Spacer()
|
||||
HStack(spacing: 4) {
|
||||
Image(systemName: "chevron.down")
|
||||
.font(.system(size: 16))
|
||||
.appFont(size: 16)
|
||||
.foregroundColor(Color(hex: "607D8B"))
|
||||
.rotationEffect(.degrees(isExpanded ? 180 : 0))
|
||||
|
||||
|
||||
@@ -204,12 +204,7 @@ struct ChatInnerTab: View {
|
||||
Spacer()
|
||||
|
||||
Text(title)
|
||||
.font(
|
||||
.custom(
|
||||
isSelected ? Font.preBold.rawValue : Font.preRegular.rawValue,
|
||||
size: 18
|
||||
)
|
||||
)
|
||||
.appFont(size: 18, weight: isSelected ? .bold : .regular)
|
||||
.foregroundColor(Color(hex: isSelected ? "3bb9f1" : "b0bec5"))
|
||||
.frame(maxWidth: .infinity)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user