From 2d16f0db9b3629b670dad9e32d5fe54fef885d05 Mon Sep 17 00:00:00 2001 From: Giulia Ariu <37103218+GiuliaAriu@users.noreply.github.com> Date: Tue, 9 Apr 2024 19:11:47 +0200 Subject: [PATCH] Added bottom padding to PageControlDotsView (#70) Co-authored-by: Giulia Ariu <> --- .../Components/SwiftUI/Pure/PageControlDotsView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/UIExtensions/Components/SwiftUI/Pure/PageControlDotsView.swift b/Sources/UIExtensions/Components/SwiftUI/Pure/PageControlDotsView.swift index 17f48a8..50b5c07 100644 --- a/Sources/UIExtensions/Components/SwiftUI/Pure/PageControlDotsView.swift +++ b/Sources/UIExtensions/Components/SwiftUI/Pure/PageControlDotsView.swift @@ -34,7 +34,8 @@ public struct PageControlDotsView: View { } } } - .padding(.vertical, 10) + .padding(.top, 10) + .padding(.bottom, 24) } }