Hello everyone I'm fairly new to Xcode. Whenever I add a ViewController and perform a segue to it from a previous screen it looks like this.
I would like it to look full screen instead of having it slide up and down.
This is the View its connected to
This is the code.
if loginMode{
Auth.auth().signIn(withEmail: email, password: password) { (result, error) in
if error == nil {
self.performSegue(withIdentifier: "authSuccess", sender: nil)
} else {
//print(error)
}
}
}