How can I make the full button clickable and not just the text? SwiftUI – Ios swift
Button("Login") { authenticateUser(username: username, password: password) } .foregroundColor(Color.black) .frame(width: 300, height: 50) .background(Color.blue) .cornerRadius(10) NavigationLink(destination: HomeView(), isActive: $showingLoginScreen) { EmptyView() } I am new to coding and have no clue how to fix this. I have to click on the…