hunnit-log / iOS

2 stars 2 forks source link

Custom alert 작성 #12

Closed sujinnaljin closed 4 years ago

sujinnaljin commented 4 years ago

Description

Custom Alert를 작성하였습니다. 다음과 같이 응용해서 사용하실 수 있습니다.

  1. 확인 alert
    CustomAlert(title: Text("회고 작성 기간이 아닙니다"), 
            message: Text("다음 회고 작성일 : 12/13일"))
  2. 기본 취소 & 확인 custom title with action alert
    CustomAlert(title: Text("정말 등록하시겠습니까?"), 
            message: Text("한번 작성한 회고록은 수정할 수 없어요"), 
            primaryButton: .cancel(), 
            secondaryButton: .default(Text("등록"), action: { })) //action 생략 가능
  3. 기본 custom title with action & 확인 custom title with action alert
    CustomAlert(title: Text("저장이 완료되었습니다"),
            message: Text("저장된 목표와 회고는 회고록에서 볼 수 있어요"),
            primaryButton: .cancel(Text("새로 시작하기"), action: { }),  //action 생략 가능
            secondaryButton: .default(Text("확인"), action: { }))  //action 생략 가능