We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4543378 commit b7bf39bCopy full SHA for b7bf39b
WooCommerce/Classes/POS/Presentation/Reusable Views/POSSendReceiptView.swift
@@ -28,7 +28,10 @@ struct POSSendReceiptView: View {
28
}))
29
30
VStack(alignment: .center, spacing: conditionalPadding(8)) {
31
- TextField(Localization.textfieldPlaceholder, text: $textFieldInput)
+ TextField("",
32
+ text: $textFieldInput,
33
+ prompt: Text(Localization.textfieldPlaceholder).foregroundColor(.posOnDisabledContainer))
34
+ .foregroundStyle(Color.posOnSurface)
35
.dynamicTypeSize(...DynamicTypeSize.accessibility1)
36
.keyboardType(.emailAddress)
37
.textInputAutocapitalization(.never)
0 commit comments