From 7bee0f8553d3bf775d4ddf3662abcc829e51c89c Mon Sep 17 00:00:00 2001 From: Arnold Noronha Date: Mon, 1 Sep 2025 10:46:58 -0400 Subject: [PATCH 1/2] .. --- .../main/java/com/example/blogapplication/LoginScreen.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/example/blogapplication/LoginScreen.kt b/app/src/main/java/com/example/blogapplication/LoginScreen.kt index 10f56cb..103434b 100644 --- a/app/src/main/java/com/example/blogapplication/LoginScreen.kt +++ b/app/src/main/java/com/example/blogapplication/LoginScreen.kt @@ -119,7 +119,8 @@ fun LoginScreen( placeholder = { Text("Enter your email") }, keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Email), modifier = Modifier.fillMaxWidth(), - singleLine = true + singleLine = true, + shape = RoundedCornerShape(12.dp) ) OutlinedTextField( @@ -138,7 +139,8 @@ fun LoginScreen( } }, modifier = Modifier.fillMaxWidth(), - singleLine = true + singleLine = true, + shape = RoundedCornerShape(12.dp) ) Row( From 05d5207d8ec5f13223e3f47084dafcbbcb3d6873 Mon Sep 17 00:00:00 2001 From: Arnold Noronha Date: Mon, 1 Sep 2025 10:57:25 -0400 Subject: [PATCH 2/2] .. --- .../main/java/com/example/blogapplication/LoginScreen.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/com/example/blogapplication/LoginScreen.kt b/app/src/main/java/com/example/blogapplication/LoginScreen.kt index 103434b..b053bc6 100644 --- a/app/src/main/java/com/example/blogapplication/LoginScreen.kt +++ b/app/src/main/java/com/example/blogapplication/LoginScreen.kt @@ -120,7 +120,7 @@ fun LoginScreen( keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Email), modifier = Modifier.fillMaxWidth(), singleLine = true, - shape = RoundedCornerShape(12.dp) + shape = RoundedCornerShape(3.3.dp) ) OutlinedTextField( @@ -140,7 +140,7 @@ fun LoginScreen( }, modifier = Modifier.fillMaxWidth(), singleLine = true, - shape = RoundedCornerShape(12.dp) + shape = RoundedCornerShape(3.3.dp) ) Row( @@ -255,4 +255,4 @@ fun LoginScreenTabletPreview() { modifier = Modifier.padding(horizontal = 120.dp) ) } -} \ No newline at end of file +}