재생 목록 생성/수정 - 새로운 콘텐츠 추가/제거

- 터치영역 수정
This commit is contained in:
Yu Sung 2024-12-18 01:59:40 +09:00
parent c3e60bd92c
commit d77b83033d
1 changed files with 4 additions and 4 deletions

View File

@ -61,10 +61,10 @@ struct PlaylistAddContentItemView: View {
Image(isChecked ? "ic_check_blue" : "ic_playlist_add") Image(isChecked ? "ic_check_blue" : "ic_playlist_add")
.padding(8) .padding(8)
.onTapGesture { }
onClick() .onTapGesture {
isChecked.toggle() onClick()
} isChecked.toggle()
} }
} }
} }