Move library columns settings to library sheet

Closes #3969. Dialog-ception.
This commit is contained in:
arkon
2023-04-15 19:36:49 -04:00
parent 8a18e10cc2
commit c6ac992798
4 changed files with 166 additions and 150 deletions

View File

@ -49,6 +49,18 @@ fun HeadingItem(
)
}
@Composable
fun BasicItem(
label: String,
onClick: () -> Unit,
) {
SortItem(
label = label,
sortDescending = null,
onClick = onClick,
)
}
@Composable
fun SortItem(
label: String,