|
@@ -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)
|