We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21ec623 commit cdfde8eCopy full SHA for cdfde8e
AIProject/iCo/Features/Dashboard/View/FearGreedView.swift
@@ -101,6 +101,7 @@ struct FearGreedView: View {
101
fearGreedDescription
102
}
103
104
+ .animation(.easeInOut, value: viewModel.classification)
105
106
107
var chartSection: some View {
AIProject/iCo/Features/Dashboard/ViewModel/FearGreedViewModel.swift
@@ -16,7 +16,7 @@ final class FearGreedViewModel: ObservableObject {
16
/// 공포-탐욕 지수 값입니다.
17
@Published var indexValue: CGFloat = 50
18
/// 한글로 표시된 공포-탐욕 분류입니다.
19
- @Published var classification: String = ""
+ @Published var classification: String = "중립"
20
21
var baseColor: Color { fearGreed.color }
22
0 commit comments