PWD-1: modify text styling
This commit is contained in:
parent
6b1be3378a
commit
d2c1f1dc22
1 changed files with 7 additions and 1 deletions
|
@ -25,7 +25,13 @@ struct DetailView: View {
|
|||
|
||||
var body: some View {
|
||||
VStack {
|
||||
Text("Enter the password for \(viewModel.password.name) and submit with \"Enter\"")
|
||||
VStack {
|
||||
Text(viewModel.password.name)
|
||||
.font(.title)
|
||||
.foregroundColor(.primary)
|
||||
Text("Enter the password and submit with \"Enter\"")
|
||||
.font(.title3)
|
||||
}
|
||||
Form {
|
||||
SecureField("", text: $value)
|
||||
.textFieldStyle(PwdTextFieldStyle())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue