Skip to content

Commit f133c2f

Browse files
committed
refactor: vertically align Add Task screen
resolves issue on iOS where a new task couldn’t be added because the button is hidden behind the keyboard
1 parent 64a8814 commit f133c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlin-multiplatform/composeApp/src/commonMain/kotlin/com/ditto/quickstart/ui/TaskAddEditScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fun TaskAddEditScreen(
4747

4848
Column(
4949
modifier = modifier.padding(horizontal = 16.dp),
50-
verticalArrangement = Arrangement.Center
50+
verticalArrangement = Arrangement.Top,
5151
) {
5252
Text(
5353
text = title,

0 commit comments

Comments
 (0)