custom

SwiftUI의 버튼을 커스텀해서 성공과 실패에 대한 애니메이션을 나타내는 예제다. 먼저 커스텀 버튼을 만든다. 임시로 버튼을 body 안에 작성하고 test를 출력하는 custom button으로 만들었다. import SwiftUI struct AnimatedButton: View { var body: some View { Button { print("test") } label: { Text("custom button") } } 다음으로 버튼을 나타낼 뷰를 먼저 작성한다. import SwiftUI struct AnimatedButtonView: View { var body: some View { AnimatedButton() } } struct AnimatedButtonView_Previews: P..
chicharios
'custom' 태그의 글 목록