TextEditor(text: $msg)
.overlay {
if msg == "" {
HStack{
Text("write message")
.foregroundStyle(Color.secondary)
Spacer()
}.padding(.horizontal)
}
}
Post
Replies
Boosts
Views
Activity
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()
}
}
sorry i solve it just you need to add this line to Your Navigation " .navigationViewStyle(.stack) "