Sagnik Mukherjeesagnikmukherjee.hashnode.dev·Nov 5, 2024Passing Data with Serializable: Navigation with Arguments in Jetpack Compose 🚀Before we dive in, be sure to check out my previous post on basic screen navigation in Jetpack Compose! Now, let’s explore how to pass data between screens using Serializable. Suppose we want to input data in Screen A (like a name and age) and retrie...DiscussJetpack Compose
Sagnik Mukherjeesagnikmukherjee.hashnode.dev·Nov 5, 2024Smooth Navigation in Android Studio : Using SerializableIn mobile app development, it’s rare to have an application with just a single screen. As our apps grow, so does the need for effective navigation between multiple screens. Understanding how to navigate through different screens is essential for crea...Discussnavigation
Michał Konkelmichalkonkel.dev·Nov 4, 2024Compose Multiplatform Navigation Solutions - JetpackCompose NavigationIn the upcoming posts, I will thoroughly explore several popular navigation libraries that are essential for effective app development. These libraries play a crucial role in managing app navigation, ensuring a smooth and intuitive user experience. N...DiscussCompose Multiplatform Navigation Reviewcompose multiplatform
dheeraj korangagyannbaato.hashnode.dev·Oct 17, 2024Navigation in the DOMIn JavaScript, DOM manipulation allows for dynamic changes to HTML elements, their content, and structure. Below is a detailed explanation of navigating through elements and adding/removing elements. createElement(): Creates a new element node (bu...DiscussJavascript for BegineersJavaScript
Michał Konkelmichalkonkel.dev·Oct 9, 2024Compose Multiplatform Navigation Solutions - AppyxIn the upcoming posts, I will thoroughly explore several popular navigation libraries that are essential for effective app development. These libraries play a crucial role in managing app navigation, ensuring a smooth and intuitive user experience. I...DiscussCompose Multiplatform Navigation Reviewappyx
Anthima Singhanthima.hashnode.dev·Oct 8, 2024Navigating to a Visualforce Page from a Lightning Web Component in a Salesforce CommunityA few days ago, I received a requirement that seemed straightforward at first: I needed to navigate to a Visualforce page from within a Salesforce Lightning Web Component (LWC). As a developer, this kind of task isn’t entirely new, but each project b...DiscussvisualForce Page
Anderson Osayerieandemosa.hashnode.dev·Sep 19, 2024Building a Dynamic Nested Mobile Navigation Menu with ReactIntroduction As developers, we all encounter tricky problems that require creative solutions. One such problem I recently faced was creating a nested mobile navigation menu in React. I needed to build a menu where clicking on a parent menu item expan...DiscussReact
woodstockwoodstock.hashnode.dev·Sep 10, 2024Next.js의 네비게이팅네비게이팅 방식 1. 페이지 이동 1-1. Link <header> <Link href={"/"}>index</Link> <Link href={"/search"}>search</Link> <Link href={"/book/1"}>book/1</Link> </header> 1-2. Programmatic Navigation 사용자가 링크를 직접 클릭했을 때 페이지를 이동시키는 방식이 아니라, 특정 버튼이 클릭되거나 특정 조건을 만족...DiscussNextJSnavigation
Michał Konkelmichalkonkel.dev·Sep 9, 2024Compose Multiplatform Navigation Solutions - VoyagerIn the upcoming posts, I will thoroughly explore several popular navigation libraries used in Compose Multiplatform projects. Today's post is about the Voyager library. Choosing a navigation library for your Compose Multiplatform project can be a cha...DiscussCompose Multiplatform Navigation Reviewcompose multiplatform
Praveen Rajpraveenrajprp.hashnode.dev·Aug 23, 2024The Magic of React RouterBack in the day, navigating between pages in a web app was straightforward—you'd use the <a> tag to link to different pages. This worked fine, but every time you clicked a link, the entire page would reload, slowing things down. Then React came along...DiscussReact