-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/add singing list edit view #90
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
리뷰 완료했고 이게 머지되야 브랜치 바탕으로 뷰 리프레쉬 작업 다시 들어갈거 같습니당. 고생하셨어용
SongListCellView(songEditButtonTap: $songEditButtonTap, song: $0) | ||
Divider() | ||
.background(Color.grayScale6) | ||
.frame(width: 350) | ||
} | ||
.padding(.top, 10) | ||
AddSongButtonView() | ||
// TODO: - 이후 업데이트에서 새 노래 추가가 아닌 기존 노래 추가로 기능 변경 | ||
// AddSongButtonView() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요거 지워주세용
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
노래 추가하는 버튼을 나중에 기존 노래 추가로 변경할 예정이라 일단은 주석으로 남겨둘게요!!
@@ -16,17 +16,21 @@ extension View { | |||
/// - Parameter isEditing: 텍스트 필드 편집 여부 확인 | |||
/// - Parameter isFull: 텍스트 필드 공백 여부 확인 | |||
/// - Returns: 텍스트 필드 뷰 | |||
func underlineTextField(isEditing : Bool, isFull: Bool) -> some View { | |||
func underlineTextField(isEditing : Bool, isFull: Bool, inset: CGFloat, active: Bool = true) -> some View { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거 왜 바꾼거야??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거 리스트 이름 편집하는 곳에서 언더라인 쓰고 싶은데 글자 크기 커지니까 라인이랑 텍스트랑 너무 붙어있어서 inset이라는 파라미터 추가했어!
active는 리스트에서 언더라인이 편집시에만 나타나야되서 추가한 파라미터야
주석으로 파라미터 설명 추가할게!!
@Binding var listEditButtonTap: Bool | ||
@Binding var songEditButtonTap: Bool |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거 지금봤는데 네이밍을 Tap대신에 탭이 된거니깐 Tapped는 어때?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
반영하겠습니당~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
와우 뷰를 찍어내는군요 공장장님!
수고많으셨어요~!
…O/Semo into feat/AddSingingListEditView
작업사항
추가해야될 사항
이슈 번호
#89