반응형 day241 100 days of SwiftUI - Day24 이번에는 저번에 배운 뷰의 조건, 커스텀등을 이전 프로젝트에 적용시키는 과제 이다.//Go back to project 1 and use a conditional modifier to change the total amount text view to red if the user selects a 0% tip.// 수정부분 foregroundColor 부분 추가!Section("전체 금액") { Text(totalAmount, format: .currency(code: Locale.current.currency?.identifier ?? "USD" )) .foregroundColor(tipPercentage == 0 ? Color.red : Color.black)}배운데로 삼항 연산자 사.. 2024. 11. 20. 이전 1 다음 반응형