From 9a05708019af39c561a393dce1cb979ba4e2e360 Mon Sep 17 00:00:00 2001 From: Admin Date: Sun, 8 Mar 2026 13:44:04 +0500 Subject: [PATCH] iOS: reduce bottom padding in full player to occupy all space - Reduced bottom padding from 24pt to 8pt on bottom toolbar - Reduced spacer above toolbar from 24pt to 16pt - Added .ignoresSafeArea(edges: .bottom) to VStack to extend to screen bottom - Player now uses full screen height without excess bottom padding --- ios/LibNovel/LibNovel/Views/Player/PlayerViews.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ios/LibNovel/LibNovel/Views/Player/PlayerViews.swift b/ios/LibNovel/LibNovel/Views/Player/PlayerViews.swift index 6c07106..8b8516e 100644 --- a/ios/LibNovel/LibNovel/Views/Player/PlayerViews.swift +++ b/ios/LibNovel/LibNovel/Views/Player/PlayerViews.swift @@ -498,7 +498,7 @@ struct FullPlayerView: View { .padding(.horizontal, 20) .padding(.top, 32) - Spacer(minLength: 24) + Spacer(minLength: 16) // Bottom toolbar HStack(spacing: 0) { @@ -572,8 +572,9 @@ struct FullPlayerView: View { .buttonStyle(.plain) } .padding(.horizontal, 16) - .padding(.bottom, 24) + .padding(.bottom, 8) } + .ignoresSafeArea(edges: .bottom) } .sheet(isPresented: $showingChaptersList) { ChaptersListSheet(