Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,9 @@ import androidx.window.core.layout.WindowSizeClass.Companion.WIDTH_DP_MEDIUM_LOW
import com.example.compose.snippets.touchinput.Button
import kotlinx.serialization.Serializable

interface SceneExample<T : Any> {

public fun interface SceneStrategyExample<T : Any> {
// [START android_compose_navigation3_scenes_1]
@Composable
public fun calculateScene(
entries: List<NavEntry<T>>,
onBack: (count: Int) -> Unit,
): Scene<T>?
public fun SceneStrategyScope<T>.calculateScene(entries: List<NavEntry<T>>): Scene<T>?
// [END android_compose_navigation3_scenes_1]
}

Expand Down
Loading