반응형
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
- @Binding
- @State
- RxSwift
- nonisolated
- RFC1738/1808
- NullObject
- init
- swift6
- ios14
- @Environment
- dismiss
- Operators
- typeorm
- subject
- @EnvironmentObject
- RxCocoa
- SWIFT
- IOS
- SwiftUI
- graphql
- Xcode
- Creating Operators
- NavigationLink
- nestjs
- URL(string:)
- Operater
- Bug
- vim
- init?
- operator
Archives
- Today
- Total
Tunko Development Diary
SwiftUI) NavigationLink 터치 에니메이션 제거 본문
NavigationLink 를 통해 다른 뷰로 이동시 기본적으로 해당 뷰를 버튼 처럼 터치할 수 있게 됩니다.
이때 에니메이션이 동작하지 않도록 하는 방법입니다.
import SwiftUI
struct EmpeyActionStyle: ButtonStyle {
func makeBody(configuration: Configuration) -> some View {
configuration.label
}
}
사용시
NavigationLink {
Text("Next View")
} label: {
Text("Button")
}
.buttonStyle(EmpeyActionStyle())
반응형
'Development > iOS 개발' 카테고리의 다른 글
xcode Build Clean으로도 알 수 없는 에러가 남을때 ☹️ (0) | 2023.01.01 |
---|---|
[Swift 5] @propertyWrapper 란? (0) | 2022.09.26 |
[Swift 5.1] .Self 키워드 (0) | 2022.08.27 |
SwiftUI) Navigation dismiss하기 (0) | 2022.07.21 |
🤯 Xcode스토리보드 우측 코드 안보일 때 Assistant Results (0) | 2022.07.12 |
Comments