دستور پخت پایه قابل ذخیره

این دستورالعمل یک مثال ساده از نحوه ایجاد یک پشته پشتیبان پایدار را نشان می‌دهد که از تغییرات پیکربندی جان سالم به در می‌برد.

چگونه کار می‌کند؟

برای اینکه پشته پشتی (back stack) پایدار بماند، از تابع rememberNavBackStack استفاده می‌کنیم. این تابع، پشته پشتی را در طول تغییرات پیکربندی (مثلاً چرخش صفحه) ایجاد و به خاطر می‌سپارد.

یکی از الزامات استفاده از rememberNavBackStack این است که کلیدهای ناوبری (مسیرها) باید قابلیت سریال‌سازی داشته باشند. در این مثال، RouteA و RouteB با @Serializable حاشیه‌نویسی شده‌اند و رابط NavKey را پیاده‌سازی می‌کنند.

این مثال از یک دستور when درون entryProvider برای نگاشت مسیرها به composableهای متناظرشان استفاده می‌کند، اما می‌تواند با entryProvider DSL نیز مورد استفاده قرار گیرد.

/*
 * Copyright 2025 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.example.nav3recipes.basicsaveable

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.material3.Button
import androidx.compose.material3.Text
import androidx.lifecycle.compose.dropUnlessResumed
import androidx.navigation3.runtime.NavEntry
import androidx.navigation3.runtime.NavKey
import androidx.navigation3.runtime.rememberNavBackStack
import androidx.navigation3.ui.NavDisplay
import com.example.nav3recipes.content.ContentBlue
import com.example.nav3recipes.content.ContentGreen
import com.example.nav3recipes.ui.setEdgeToEdgeConfig
import kotlinx.serialization.Serializable

@Serializable
private data object RouteA : NavKey

@Serializable
private data class RouteB(val id: String) : NavKey

class BasicSaveableActivity : ComponentActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        setEdgeToEdgeConfig()
        super.onCreate(savedInstanceState)
        setContent {
            val backStack = rememberNavBackStack(RouteA)

            NavDisplay(
                backStack = backStack,
                onBack = { backStack.removeLastOrNull() },
                entryProvider = { key ->
                    when (key) {
                        is RouteA -> NavEntry(key) {
                            ContentGreen("Welcome to Nav3") {
                                Button(onClick = dropUnlessResumed {
                                    backStack.add(RouteB("123"))
                                }) {
                                    Text("Click to navigate")
                                }
                            }
                        }

                        is RouteB -> NavEntry(key) {
                            ContentBlue("Route id: ${key.id} ")
                        }

                        else -> {
                            error("Unknown route: $key")
                        }
                    }
                }
            )
        }
    }
}