반응형
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
- dismiss
- nestjs
- vim
- RFC1738/1808
- @State
- SWIFT
- swift6
- Xcode
- URL(string:)
- operator
- Operater
- typeorm
- NavigationLink
- SwiftUI
- RxCocoa
- init?
- RxSwift
- @Environment
- NullObject
- subject
- IOS
- Operators
- @EnvironmentObject
- Creating Operators
- ios14
- graphql
- Bug
- init
- nonisolated
- @Binding
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