From b43d8c616b9580a271379265a15b4b576008ef32 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 13 Apr 2025 10:07:34 -0400 Subject: [PATCH 1/2] Added padding of 20 at the bottom of the screen when bottom nav is gone. Currently, it was just constantly keeping the text at the very bottom of the screen and it looked uncomfortable. It feels like there is a bit less space when scrolling back up in the page now, but I think it's a good workaround until the bottom cursor autoscroll is figured out. --- freewrite.xcodeproj/project.pbxproj | 4 ++-- freewrite/ContentView.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/freewrite.xcodeproj/project.pbxproj b/freewrite.xcodeproj/project.pbxproj index f89a773..82baa9b 100644 --- a/freewrite.xcodeproj/project.pbxproj +++ b/freewrite.xcodeproj/project.pbxproj @@ -402,7 +402,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"freewrite/Preview Content\""; - DEVELOPMENT_TEAM = 2UDAY4J48G; + DEVELOPMENT_TEAM = 9UG7VTVM2C; ENABLE_HARDENED_RUNTIME = YES; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; @@ -444,7 +444,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"freewrite/Preview Content\""; - DEVELOPMENT_TEAM = 2UDAY4J48G; + DEVELOPMENT_TEAM = 9UG7VTVM2C; ENABLE_HARDENED_RUNTIME = YES; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; diff --git a/freewrite/ContentView.swift b/freewrite/ContentView.swift index 319994b..27a6aa4 100644 --- a/freewrite/ContentView.swift +++ b/freewrite/ContentView.swift @@ -391,7 +391,7 @@ struct ContentView: View { .lineSpacing(lineHeight) .frame(maxWidth: 650) .id("\(selectedFont)-\(fontSize)") - .padding(.bottom, bottomNavOpacity > 0 ? navHeight : 0) + .padding(.bottom, bottomNavOpacity > 0 ? navHeight : 20) .ignoresSafeArea() .colorScheme(.light) .onAppear { From e03e31b56e8a0289178fea821f283960002952e0 Mon Sep 17 00:00:00 2001 From: Daniel Portela Date: Sun, 13 Apr 2025 10:11:50 -0400 Subject: [PATCH 2/2] Fixed development team (had to change to build and forgot to change back) --- freewrite.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freewrite.xcodeproj/project.pbxproj b/freewrite.xcodeproj/project.pbxproj index 82baa9b..f89a773 100644 --- a/freewrite.xcodeproj/project.pbxproj +++ b/freewrite.xcodeproj/project.pbxproj @@ -402,7 +402,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"freewrite/Preview Content\""; - DEVELOPMENT_TEAM = 9UG7VTVM2C; + DEVELOPMENT_TEAM = 2UDAY4J48G; ENABLE_HARDENED_RUNTIME = YES; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; @@ -444,7 +444,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"freewrite/Preview Content\""; - DEVELOPMENT_TEAM = 9UG7VTVM2C; + DEVELOPMENT_TEAM = 2UDAY4J48G; ENABLE_HARDENED_RUNTIME = YES; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES;