Sad Ellie b25596bbc1 UI improvements for settings
Added icons, some descriptions.
Rearranged settings.
2022-12-12 20:23:52 +04:00

37 lines
1.3 KiB
Kotlin

/*
* Unitto is a unit converter for Android
* Copyright (c) 2022-2022 Elshan Agaev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.sadellie.unitto.data
/**
* Object that contains all routes to screen in the app
*/
object NavRoutes {
const val MAIN_SCREEN = "MainScreen"
const val LEFT_LIST_SCREEN = "LeftScreen"
const val RIGHT_LIST_SCREEN = "RightScreen"
const val SETTINGS_GRAPH = "SettingsGraph"
const val SETTINGS_SCREEN = "SettingsScreen"
const val THEMES_SCREEN = "ThemesScreen"
const val ABOUT_SCREEN = "AboutScreen"
const val THIRD_PARTY_LICENSES_SCREEN = "ThirdPartyLicensesScreen"
const val UNIT_GROUPS_SCREEN = "UnitGroupScreen"
}