Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- swiftUI
- SWIFT
- combine
- Protocol
- clean architecture
- 리펙토링
- MVVM
- 클린 코드
- UICollectionView
- UITextView
- Observable
- tableView
- rxswift
- 스위프트
- Xcode
- uitableview
- Refactoring
- Human interface guide
- collectionview
- uiscrollview
- RxCocoa
- HIG
- Clean Code
- 애니메이션
- ribs
- map
- ios
- swift documentation
- 리펙터링
- 리팩토링
Archives
- Today
- Total
목록button 커스텀 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] 뷰를 버튼처럼 만드는 방법 (DragGesture, pressed color 효과, 커스텀 버튼)
뷰를 버튼처럼 만드는 방법일반 SwiftUI의 버튼은 Button(action:label:)형태이며, presssed color는 label부분이 투명해지는 효과가 디폴트로 들어간 상태(코드)struct ContentView: View { @State private var isPressed = false @State private var isChecked = false var body: some View { VStack { normalButton } } @ViewBuilder private var normalButton: some View { Button(action: { isChe..
iOS 응용 (SwiftUI)
2024. 10. 14. 01:43