#30 added edit screen to destinations

This commit is contained in:
lbarraga 2023-05-01 12:57:31 +02:00
parent 93a282026e
commit ddbac51c9d
2 changed files with 9 additions and 1 deletions

View file

@ -1,4 +1,11 @@
package be.ugent.sel.studeez.data
class EditTimerState {
import be.ugent.sel.studeez.data.local.models.timer_functional.FunctionalTimer
import be.ugent.sel.studeez.data.local.models.timer_info.TimerInfo
import javax.inject.Inject
import javax.inject.Singleton
@Singleton
class EditTimerState @Inject constructor(){
lateinit var timerInfo: TimerInfo
}

View file

@ -8,6 +8,7 @@ object StudeezDestinations {
const val HOME_SCREEN = "home"
const val TIMER_OVERVIEW_SCREEN = "timer_overview"
const val TIMER_SELECTION_SCREEN = "timer_selection"
const val TIMER_EDIT_SCREEN = "timer_edit"
const val SESSION_SCREEN = "session"
const val SESSION_RECAP = "session_recap"
// const val TASKS_SCREEN = "tasks"