We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a6117d commit 463b1f5Copy full SHA for 463b1f5
1 file changed
Projects/Feature/SelfStudyCheck/Sources/Scene/SelfStudyCheckView.swift
@@ -199,14 +199,4 @@ extension SelfStudyCheckView {
199
return .Gray.gray600
200
}
201
202
-
203
- private func indicatorOffset(for period: SelfStudyCheckReducer.Period) -> CGFloat {
204
- let allCases = SelfStudyCheckReducer.Period.allCases
205
- guard let selectedIndex = allCases.firstIndex(of: period) else { return 0 }
206
- let buttonWidth: CGFloat = 114
207
- let spacing: CGFloat = 8
208
- let horizontalPadding: CGFloat = 24
209
210
- return horizontalPadding + CGFloat(selectedIndex) * (buttonWidth + spacing)
211
- }
212
0 commit comments