Fixed navigation bar

This commit is contained in:
dankito 2020-07-16 17:46:46 +02:00
parent 5346f2c3fd
commit 5dc0c7a74f
1 changed files with 18 additions and 20 deletions

View File

@ -22,30 +22,28 @@ struct AddAccountDialog: View {
self.findBank()
})
return NavigationView {
Form {
Section {
TextField("Bank code", text: textValueBinding)
}
return Form {
Section {
TextField("Bank code", text: textValueBinding)
}
Section {
TextField("Customer ID", text: $customerId)
Section {
TextField("Customer ID", text: $customerId)
SecureField("Password", text: $password)
}
SecureField("Password", text: $password)
}
Section {
HStack {
Spacer()
Button(action: { self.addAccount() },
label: { Text("Add") })
.disabled(!self.isRequiredDataEntered())
Spacer()
}
Section {
HStack {
Spacer()
Button(action: { self.addAccount() },
label: { Text("Add") })
.disabled(!self.isRequiredDataEntered())
Spacer()
}
}
.hideNavigationBar()
}
.navigationBarTitle(Text("Add account"), displayMode: NavigationBarItem.TitleDisplayMode.inline)
}