2026-03-10 23:51:55 -05:00
|
|
|
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 {
|
2026-03-21 23:01:02 -05:00
|
|
|
return false
|
2026-03-10 23:51:55 -05:00
|
|
|
}
|