Skip to content

Commit 58145d6

Browse files
committed
test: AuthTextField and field validations
1 parent a840716 commit 58145d6

File tree

2 files changed

+451
-2
lines changed

2 files changed

+451
-2
lines changed

auth/src/main/java/com/firebase/ui/auth/compose/AuthTextField.kt renamed to auth/src/main/java/com/firebase/ui/auth/compose/ui/components/AuthTextField.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.firebase.ui.auth.compose
1+
package com.firebase.ui.auth.compose.ui.components
22

33
import androidx.compose.foundation.layout.Arrangement
44
import androidx.compose.foundation.layout.Column
@@ -127,7 +127,7 @@ internal fun PreviewAuthTextField() {
127127
val emailTextValue = remember { mutableStateOf("") }
128128
val passwordTextValue = remember { mutableStateOf("") }
129129
val emailValidator = remember {
130-
EmailValidator(stringProvider = DefaultAuthUIStringProvider(context),)
130+
EmailValidator(stringProvider = DefaultAuthUIStringProvider(context))
131131
}
132132
val passwordValidator = remember {
133133
PasswordValidator(

0 commit comments

Comments
 (0)