12 lines
455 B
Kotlin
12 lines
455 B
Kotlin
package com.mindmachine.mvp.session
|
|
|
|
import com.mindmachine.mvp.domain.RuntimeState
|
|
|
|
fun shouldUseImmersiveFullscreen(isVisualMode: Boolean, runtimeState: RuntimeState): Boolean {
|
|
return isVisualMode && (runtimeState == RuntimeState.COUNTDOWN || runtimeState == RuntimeState.RUNNING)
|
|
}
|
|
|
|
fun shouldRevealSystemBarsOnTap(isVisualMode: Boolean, runtimeState: RuntimeState): Boolean {
|
|
return shouldUseImmersiveFullscreen(isVisualMode, runtimeState)
|
|
}
|