Skip to content

Commit 210cd96

Browse files
committed
[fix] #196 카테고리 상세 QA 반영
- scrollview Indicator 수정 - divider padding 수정
1 parent 3fafca1 commit 210cd96

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Projects/Feature/FeatureCategoryDetail/Sources/CategoryDetailView.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,19 @@ public struct CategoryDetailView: View {
3030
public extension CategoryDetailView {
3131
var body: some View {
3232
WithPerceptionTracking {
33-
ScrollView {
33+
ScrollView(showsIndicators: false) {
3434
VStack(spacing: 24) {
3535
header
3636
scrollObservableView
3737
LazyVStack(spacing: 0, pinnedViews: [.sectionHeaders]) {
3838
Section {
3939
contentScrollView
40+
.padding(.horizontal, 20)
4041
} header: {
4142
VStack(spacing: 24) {
42-
PokitDivider().padding(.horizontal, -20)
43+
PokitDivider()
4344
filterHeader
45+
.padding(.horizontal, 20)
4446
}
4547
.padding(.bottom, 16)
4648
.background(.white)
@@ -60,7 +62,6 @@ public extension CategoryDetailView {
6062
isSticky = false
6163
}
6264
})
63-
.padding(.horizontal, 20)
6465
.padding(.top, 12)
6566
.pokitNavigationBar { navigationBar }
6667
.overlay(

0 commit comments

Comments
 (0)