You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flatten the two-column layout into a single scrollable column
so the text field and button don't get crushed when the keyboard
opens on small devices in landscape mode.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: WordPress/src/main/java/org/wordpress/android/ui/accounts/login/applicationpassword/LoginSiteApplicationPasswordScreen.kt
+45-53Lines changed: 45 additions & 53 deletions
Original file line number
Diff line number
Diff line change
@@ -97,68 +97,60 @@ fun LoginSiteApplicationPasswordScreen(
97
97
.fillMaxSize()
98
98
.padding(paddingValues)
99
99
.imePadding()
100
+
.verticalScroll(rememberScrollState())
101
+
.padding(horizontal =16.dp)
100
102
) {
101
-
Column(
102
-
modifier =Modifier
103
-
.weight(1f)
104
-
.verticalScroll(rememberScrollState())
105
-
.padding(horizontal =16.dp)
106
-
) {
107
-
Spacer(modifier =Modifier.height(16.dp))
103
+
Spacer(modifier =Modifier.height(16.dp))
108
104
109
-
Text(
110
-
text = stringResource(R.string.enter_site_address),
111
-
style =MaterialTheme.typography.bodyLarge,
112
-
color =MaterialTheme.colorScheme.onSurface
113
-
)
105
+
Text(
106
+
text = stringResource(R.string.enter_site_address),
0 commit comments