I want an alert to be displayed when the user is moved to a new page without any action and quickly.
I use NavigationLink
I try for this
but there was no result
you can help me ?
I use NavigationLink
I try for this
Code Block @State private var showAlert = true
but there was no result
you can help me ?
I was solve with this code changes
thanks all
Code Block struct SecondView: View { @State var showAlert = false var body: some View { // i want to show alert when navigate to this view VStack{ Text("Second View") .alert(isPresented: $showAlert) { Alert(title: Text("You are in second view")) } }.onAppear{ showAlert = true } } }
thanks all