Closed sujinnaljin closed 4 years ago
Custom Alert를 작성하였습니다. 다음과 같이 응용해서 사용하실 수 있습니다.
CustomAlert(title: Text("회고 작성 기간이 아닙니다"), message: Text("다음 회고 작성일 : 12/13일"))
CustomAlert(title: Text("정말 등록하시겠습니까?"), message: Text("한번 작성한 회고록은 수정할 수 없어요"), primaryButton: .cancel(), secondaryButton: .default(Text("등록"), action: { })) //action 생략 가능
CustomAlert(title: Text("저장이 완료되었습니다"), message: Text("저장된 목표와 회고는 회고록에서 볼 수 있어요"), primaryButton: .cancel(Text("새로 시작하기"), action: { }), //action 생략 가능 secondaryButton: .default(Text("확인"), action: { })) //action 생략 가능
Description
Custom Alert를 작성하였습니다. 다음과 같이 응용해서 사용하실 수 있습니다.