File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed
src/main/kotlin/com/jetpackduba/gitnuro/ui/dialogs/settings Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -469,15 +469,16 @@ private fun Appearance(settingsViewModel: SettingsViewModel) {
469469 )
470470 }
471471
472- SettingDropDown (
473- title = " Lists spacing" ,
474- subtitle = " Spacing around lists items" ,
475- dropDownOptions = linesHeightTypesList,
476- currentOption = linesHeightTypesList.first { it.value == currentLinesHeightType },
477- onOptionSelected = { dropDown ->
478- settingsViewModel.linesHeightType = dropDown.value
479- }
480- )
472+ // TODO Uncomment this once UI/UX has been implemented properly
473+ // SettingDropDown(
474+ // title = "Lists spacing (Beta)",
475+ // subtitle = "Spacing around lists items",
476+ // dropDownOptions = linesHeightTypesList,
477+ // currentOption = linesHeightTypesList.first { it.value == currentLinesHeightType },
478+ // onOptionSelected = { dropDown ->
479+ // settingsViewModel.linesHeightType = dropDown.value
480+ // }
481+ // )
481482
482483 val density = LocalDensity .current.density
483484 var options by remember {
You can’t perform that action at this time.
0 commit comments