PWD-1: add custom UI style #5

Merged
MarkusThielker merged 14 commits from 1-implement-custom-ui into development 2025-01-24 12:45:09 +00:00
Showing only changes of commit d2c1f1dc22 - Show all commits

View file

@ -25,7 +25,13 @@ struct DetailView: View {
var body: some View { var body: some View {
VStack { 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 { Form {
SecureField("", text: $value) SecureField("", text: $value)
.textFieldStyle(PwdTextFieldStyle()) .textFieldStyle(PwdTextFieldStyle())