Skip to content

Commit

Permalink
fix comment error
Browse files Browse the repository at this point in the history
  • Loading branch information
Puvikaran2001 committed May 22, 2024
1 parent aa4ac72 commit 161dd82
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ fun LoginPage(
modifier =
modifier
.fillMaxSize()
.padding(50.dp), // Adjust column placement.
.padding(50.dp),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Center,
) {
StandardTextField( // Input field for username.
// Input field for username.
StandardTextField(
label = "Username",
value = username,
onValueChange = {
Expand All @@ -70,7 +71,8 @@ fun LoginPage(

Spacer(modifier = Modifier.height(20.dp))

PasswordTextField( // Input field for password.
// Input field for password.
PasswordTextField(
password,
onPasswordChange = {
password = it // it holds the value of the text field.
Expand Down

0 comments on commit 161dd82

Please sign in to comment.