Fix overflow in ChangeCategoryDialog (#7883)

This commit is contained in:
Andreas 2022-08-28 15:43:01 +02:00 committed by GitHub
parent 8e9b1124cd
commit be7108a2ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,8 @@ import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.AlertDialog
import androidx.compose.material3.Checkbox
import androidx.compose.material3.Text
@ -85,7 +87,9 @@ fun ChangeCategoryDialog(
Text(text = stringResource(R.string.action_move_category))
},
text = {
Column {
Column(
modifier = Modifier.verticalScroll(rememberScrollState()),
) {
selection.forEach { checkbox ->
val onChange: (CheckboxState<Category>) -> Unit = {
val index = selection.indexOf(it)