rabbit-android/app/src/main/java/com/img/rabbit/route/ScreenRoute.kt

32 lines
1.0 KiB
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.img.rabbit.route
// 定义导航路由
sealed class ScreenRoute(val route: String) {
//Main页面
object Main : ScreenRoute("main")
//Tab页面
object Home : ScreenRoute("home")
object Mine : ScreenRoute("mine")
//首页(抠图)
object Cutout : ScreenRoute("cutout")
//首页(证件)
object Resize : ScreenRoute("resize")
//首页(格式)
object Format : ScreenRoute("format")
//首页(拍照指南)
object CameraGuide : ScreenRoute("cameraGuide")
//首页(长图)
object LongImage : ScreenRoute("longImage")
//我的页面Mine
object Feedback : ScreenRoute("feedback")
object OnlineService : ScreenRoute("onlineService")
object Login : ScreenRoute("login")
object Setting : ScreenRoute("setting")
//设置页面Setting
object BindAccount : ScreenRoute("bindAccount")
object ManagerAccount : ScreenRoute("managerAccount")
object AboutMine : ScreenRoute("aboutMine")
object Bind : ScreenRoute("bind")
}