বেসিক ডিএসএল রেসিপি
এই রেসিপিটিতে entryProvider DSL এবং একটি স্থায়ী ব্যাক স্ট্যাক ব্যবহার করে দুটি স্ক্রিন সহ Navigation 3 API কীভাবে ব্যবহার করতে হয় তার একটি মৌলিক উদাহরণ দেখানো হয়েছে।
কিভাবে এটা কাজ করে
এই উদাহরণটি মৌলিক রেসিপির মতোই, তবে কয়েকটি মূল পার্থক্য রয়েছে:
Persistent Back Stack : এটি
rememberNavBackStack(RouteA)ব্যবহার করে ব্যাক স্ট্যাক তৈরি এবং মনে রাখে। এটি কনফিগারেশন পরিবর্তনের সময় (যেমন, স্ক্রিন রোটেশন) ব্যাক স্ট্যাককে স্থায়ী করে তোলে।rememberNavBackStackব্যবহার করার জন্য, নেভিগেশন কীগুলিকে সিরিয়ালাইজেবল হতে হবে, যে কারণেRouteAএবংRouteB@Serializableদিয়ে টীকা করা হয় এবংNavKeyইন্টারফেস বাস্তবায়ন করা হয়।entryProviderDSL :whenস্টেটমেন্টের পরিবর্তে, এই উদাহরণে প্রতিটি রুটের কন্টেন্ট নির্ধারণ করতেentryProviderDSL ব্যবহার করা হয়।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} ") } } ) } } }