Post

Replies

Boosts

Views

Activity

Reply to ScrollView shrink to fit
You can just add the extra Space to ScrollView{ //Your code is here //rest of space here Spacer(minLength: Help.screenHeight/3.3) } and when your app start you can just WindowGroup { if appStillLoading { GeometryReader { gemotry in ZStack{ SplashScreen() .onAppear {Help.screenWidth = gemotry.size.width;Help.screenHeight = gemotry.size.height} } }else{ ContentView() } }
May ’23