Forgot to commit forceHidePassword parameter
This commit is contained in:
parent
40ae61749c
commit
66b4a1c1af
|
@ -18,7 +18,7 @@ import bankmeister.composeapp.generated.resources.visibility_off
|
|||
import org.jetbrains.compose.resources.imageResource
|
||||
|
||||
@Composable
|
||||
fun PasswordTextField(password: String = "", label: String = "Passwort", onEnterPressed: (() -> Unit)? = null, onChange: (String) -> Unit) {
|
||||
fun PasswordTextField(password: String = "", label: String = "Passwort", forceHidePassword: Boolean? = null, onEnterPressed: (() -> Unit)? = null, onChange: (String) -> Unit) {
|
||||
|
||||
var passwordVisible by remember { mutableStateOf(false) }
|
||||
|
||||
|
|
Loading…
Reference in New Issue