Change starting screen options order

This commit is contained in:
sadellie 2023-07-31 12:43:44 +03:00
parent 8c452012d6
commit fbcda09c32

View File

@ -52,8 +52,8 @@ sealed class TopLevelDestinations(
val TOP_LEVEL_DESTINATIONS: Map<TopLevelDestinations, Int> by lazy { val TOP_LEVEL_DESTINATIONS: Map<TopLevelDestinations, Int> by lazy {
mapOf( mapOf(
TopLevelDestinations.Converter to R.string.unit_converter,
TopLevelDestinations.Calculator to R.string.calculator, TopLevelDestinations.Calculator to R.string.calculator,
TopLevelDestinations.Converter to R.string.unit_converter,
TopLevelDestinations.DateDifference to R.string.date_difference, TopLevelDestinations.DateDifference to R.string.date_difference,
) )
} }