Công thức DSL cơ bản

Công thức này cho thấy một ví dụ cơ bản về cách sử dụng Navigation 3 API với 2 màn hình, sử dụng DSL entryProvider và ngăn xếp lui liên tục.

Cách hoạt động

Ví dụ này tương tự như công thức cơ bản, nhưng có một vài điểm khác biệt chính:

  1. Ngăn xếp lui có trạng thái duy trì: Sử dụng rememberNavBackStack(RouteA) để tạo và ghi nhớ ngăn xếp lui. Điều này giúp ngăn xếp lui duy trì trạng thái sau các thay đổi về cấu hình (ví dụ: xoay màn hình). Để sử dụng rememberNavBackStack, các khoá điều hướng phải có thể chuyển đổi tuần tự. Đó là lý do RouteARouteB được chú thích bằng @Serializable và triển khai giao diện NavKey.

  2. entryProvider DSL: Thay vì câu lệnh when, ví dụ này sử dụng entryProvider DSL để xác định nội dung cho từng tuyến đường. Hàm entry<RouteType> dùng để liên kết một loại tuyến đường với nội dung có khả năng kết hợp của loại tuyến đường đó.

Logic điều hướng vẫn giữ nguyên: để điều hướng từ RouteA đến RouteB, chúng ta sẽ thêm một thực thể RouteB vào ngăn xếp lui.

/*
 * 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.basicdsl

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.navigation3.runtime.NavKey
import androidx.navigation3.runtime.entryProvider
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 BasicDslActivity : ComponentActivity() {

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

            NavDisplay(
                backStack = backStack,
                onBack = { backStack.removeLastOrNull() },
                entryProvider = entryProvider {
                    entry<RouteA> {
                        ContentGreen("Welcome to Nav3") {
                            Button(onClick = {
                                backStack.add(RouteB("123"))
                            }) {
                                Text("Click to navigate")
                            }
                        }
                    }
                    entry<RouteB> { key ->
                        ContentBlue("Route id: ${key.id} ")
                    }
                }
            )
        }
    }
}