revanced-manager-compose/app/src/main/java/app/revanced/manager/compose/destination/AppDestination.kt
Aunali321 d3dbe33262
feat: Dashboard Screen (#18)
* feat: add Dashboard Screen and Sources Screen

* fix: fix tab onClick not working

* refactor: remove AppBar

---------

Co-authored-by: CnC-Robert <CnC.Rob3rt@gmail.com>
2023-04-30 19:27:14 +00:00

11 lines
210 B
Kotlin

package app.revanced.manager.compose.destination
import android.os.Parcelable
import kotlinx.parcelize.Parcelize
sealed interface Destination: Parcelable {
@Parcelize
object Dashboard: Destination
}