일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 인프런
- 상호배제
- async
- Algorithm
- 데드락
- scrollview
- 오브젝트
- deadlock
- 프로세스 스케줄링
- Swift
- Codable
- Linked List
- SwiftUI
- UserDefaults
- 비동기
- core data
- 동기화
- 가상 메모리
- 앨런
- 동시성
- 100 days of SwiftUI
- @state
- struct
- 운영체제
- 알고리즘
- IOS
- COLOR
- Apple Developer Academy
- decode
- forEach
Archives
- Today
- Total
목록LinearGradient (1)
기어가더라도 제대로
[SwiftUI-기초] 그라데이션 - Gradients
그라데이션은 컬러와 마찬가지로 그 자체로 뷰입니다. 그라데이션의 3요소 color의 배열 Size와 direction 정보 그라데이션의 타입 선형 그라데이션 - LinearGradient LinearGradient(gradient: Gradient(colors: [.white, .black]), startPoint: .top, endPoint: .bottom) 시작점과 끝점이 있습니다. 색상과 각각의 색상이 얼마나 유지될지를 정할 수도 있습니다. 그라데이션이 유지되는 공간이 중앙에 잠깐 나타납니다. LinearGradient(gradient: Gradient(stops: [ Gradient.Stop(color: .white, location: 0.45), Gradient.Stop(color: .black..
SwiftUI - 기초
2022. 10. 11. 00:08