डीएसएल का बुनियादी तरीका

इस रेसिपी में, दो स्क्रीन के साथ Navigation 3 API का इस्तेमाल करने का एक बुनियादी उदाहरण दिखाया गया है. इसमें entryProvider डीएसएल और परसिस्टेंट बैक स्टैक का इस्तेमाल किया गया है.

यह कैसे काम करता है

यह उदाहरण, बुनियादी रेसिपी की तरह ही है. हालांकि, इसमें कुछ मुख्य अंतर हैं:

  1. परसिस्टेंट बैक स्टैक: यह बैक स्टैक बनाने और उसे याद रखने के लिए, rememberNavBackStack(RouteA) का इस्तेमाल करता है. इससे कॉन्फ़िगरेशन में बदलाव होने पर भी, बैक स्टैक बना रहता है. जैसे, स्क्रीन घुमाने पर. rememberNavBackStack का इस्तेमाल करने के लिए, नेविगेशन कुंजियों को क्रम से लगाया जाना चाहिए. इसलिए, RouteA और RouteB को @Serializable के साथ एनोटेट किया जाता है. साथ ही, NavKey इंटरफ़ेस लागू किया जाता है.

  2. entryProvider डीएसएल: इस उदाहरण में, हर रूट के लिए कॉन्टेंट तय करने के लिए when स्टेटमेंट के बजाय entryProvider डीएसएल का इस्तेमाल किया गया है. entry<RouteType> फ़ंक्शन का इस्तेमाल, किसी रूट टाइप को उसके कंपोज़ेबल कॉन्टेंट से जोड़ने के लिए किया जाता है.

नेविगेशन का लॉजिक पहले जैसा ही रहता है: RouteA से RouteB पर नेविगेट करने के लिए, हम बैक स्टैक में RouteB इंस्टेंस जोड़ते हैं.

/*
 * 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} ")
                    }
                }
            )
        }
    }
}