Reorder theme options in AdvancedSettingsState
This commit is contained in:
parent
746916f18b
commit
352b5d97db
1 changed files with 7 additions and 6 deletions
|
|
@ -43,6 +43,13 @@ enum class ThemeOption : DropdownOption {
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
override fun getText(): String = stringResource(CommonStrings.common_system)
|
override fun getText(): String = stringResource(CommonStrings.common_system)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Light {
|
||||||
|
@Composable
|
||||||
|
@ReadOnlyComposable
|
||||||
|
override fun getText(): String = stringResource(CommonStrings.common_light)
|
||||||
|
},
|
||||||
|
|
||||||
Dark {
|
Dark {
|
||||||
@Composable
|
@Composable
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
|
|
@ -53,11 +60,5 @@ enum class ThemeOption : DropdownOption {
|
||||||
@Composable
|
@Composable
|
||||||
@ReadOnlyComposable
|
@ReadOnlyComposable
|
||||||
override fun getText(): String = stringResource(CommonStrings.common_black)
|
override fun getText(): String = stringResource(CommonStrings.common_black)
|
||||||
},
|
|
||||||
|
|
||||||
Light {
|
|
||||||
@Composable
|
|
||||||
@ReadOnlyComposable
|
|
||||||
override fun getText(): String = stringResource(CommonStrings.common_light)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue