Skip to content

Commit b661399

Browse files
committed
Change style type
1 parent f371365 commit b661399

File tree

1 file changed

+3
-3
lines changed
  • FirebaseAuth/Tests/SampleSwift/AuthenticationExample/CustomViews

1 file changed

+3
-3
lines changed

FirebaseAuth/Tests/SampleSwift/AuthenticationExample/CustomViews/LoginView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ extension LoginView {
101101
.padding(.bottom)
102102

103103
TextField("Email", text: $email)
104-
.textFieldStyle(SymbolTextField(symbolName: "person.crop.circle"))
104+
.textFieldStyle(SymbolTextFieldStyle(symbolName: "person.crop.circle"))
105105

106106
TextField("Password", text: $password)
107-
.textFieldStyle(SymbolTextField(symbolName: "lock.fill"))
107+
.textFieldStyle(SymbolTextFieldStyle(symbolName: "lock.fill"))
108108
.padding(.bottom)
109109

110110
Group {
@@ -136,7 +136,7 @@ extension LoginView {
136136
}
137137
}
138138

139-
private struct SymbolTextField: TextFieldStyle {
139+
private struct SymbolTextFieldStyle: TextFieldStyle {
140140
let symbolName: String
141141

142142
func _body(configuration: TextField<Self._Label>) -> some View {

0 commit comments

Comments
 (0)