File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Projects/Feature/FeatureCategoryDetail/Sources Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -30,17 +30,19 @@ public struct CategoryDetailView: View {
3030public 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 (
You can’t perform that action at this time.
0 commit comments