Skip to content

Commit

Permalink
[Fix] sopt-makers#49 - Setting 마지막 셀 radius 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yangsubinn committed Dec 17, 2022
1 parent 1b4f32d commit 880dcc7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,14 @@ extension SettingVC: UICollectionViewDataSource {
let titleList = viewModel.settingList[indexPath.section]
if indexPath.row == 1 { cell.setLines() }
if indexPath.row == 2 { cell.setRadius() }
if indexPath.section == 2 || indexPath.section == 3 {
if indexPath.section == 2 {
cell.removeArrow()
.setRadius()
}

if indexPath.section == 3 {
cell.changeTextColor(DSKitAsset.Colors.access300.color)
.setRadius(false)
}
cell.setData(titleList[indexPath.row])
return cell
Expand Down

0 comments on commit 880dcc7

Please sign in to comment.