authentification and navigation #31
Merged
samuel.berion
merged 5 commits from authentification
into master
1 year ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'authentification'
Deleting a branch is permanent. It CANNOT be undone. Continue?
Very cool !
fontSize = 14.sp,
modifier = Modifier.padding(vertical = 8.dp)
)
}
value = email,
onValueChange = { email = it },
label = { Text("Email") },
modifier = Modifier.fillMaxWidth()
onValueChange = { password = it },
label = { Text("Password") },
visualTransformation = PasswordVisualTransformation(),
modifier = Modifier.fillMaxWidth()
fontSize = 14.sp,
modifier = Modifier.padding(vertical = 8.dp)
)
}
value = username,
onValueChange = { username = it },
label = { Text("Nom d'utilisateur") },
modifier = Modifier.fillMaxWidth()
value = password,
onValueChange = { password = it },
label = { Text("Mot de passe") },
modifier = Modifier.fillMaxWidth(),
value = email,
onValueChange = { email = it },
label = { Text("Email") },
modifier = Modifier.fillMaxWidth()
509909e13d
into master 1 year agoReviewers
509909e13d
.