Skip to content

Commit

Permalink
[design] #167 포킷 선택 바텀 시트 디자인 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ShapeKim98 committed Dec 9, 2024
1 parent 5bb5760 commit f2f1552
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Projects/DSKit/Sources/Components/PokitList.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public struct PokitList<Item: PokitSelectItem>: View {

Spacer()
}
.padding(.vertical, 18)
.padding(.vertical, 12)
.padding(.horizontal, 20)
.background {
if isSelected {
Expand Down
12 changes: 6 additions & 6 deletions Projects/DSKit/Sources/Components/PokitSelect.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public struct PokitSelect<Item: PokitSelectItem>: View {
}
.onChange(of: selectedItem) { onChangedSeletedItem($0) }
.sheet(isPresented: $showSheet) {
listSheet
.presentationDragIndicator(.visible)
.pokitPresentationCornerRadius()
.presentationDetents([.medium])
.pokitPresentationBackground()
listSheet
.presentationDragIndicator(.visible)
.pokitPresentationCornerRadius()
.presentationDetents([.height(564)])
.pokitPresentationBackground()
}
}

Expand Down Expand Up @@ -115,7 +115,7 @@ public struct PokitSelect<Item: PokitSelectItem>: View {
listCellTapped(item)
}
}
.padding(.top, 24)
.padding(.top, 12)
.padding(.bottom, 20)
} else {
PokitLoading()
Expand Down

0 comments on commit f2f1552

Please sign in to comment.