diff --git a/app/src/main/java/com/example/blogapplication/LoginScreen.kt b/app/src/main/java/com/example/blogapplication/LoginScreen.kt index 10f56cb..b053bc6 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(3.3.dp) ) OutlinedTextField( @@ -138,7 +139,8 @@ fun LoginScreen( } }, modifier = Modifier.fillMaxWidth(), - singleLine = true + singleLine = true, + shape = RoundedCornerShape(3.3.dp) ) Row( @@ -253,4 +255,4 @@ fun LoginScreenTabletPreview() { modifier = Modifier.padding(horizontal = 120.dp) ) } -} \ No newline at end of file +}