Romman Sabbirrommansabbir.com·May 27, 2024TypeSafe Navigation or Traditional Intent Passing?Introduction Navigating between screens is a fundamental aspect of mobile app development. In the Android ecosystem, there are two primary methods for handling navigation: the traditional intent passing and the modern TypeSafe navigation in Jetpack C...115 readsAndroid Application Developmenttypesafenavigation
Emmanuel Abrahamemmanuel07.hashnode.dev·Jan 14, 2024A Guide to Parcelable and Serializable in Android with KotlinIntroduction In Android app development, the need to pass data between different components of an app is common. Two common approaches for achieving this are through the use of Parcelable and Serializable. In this blog, we'll explore the differences ...170 readsparcelable
Sumit Singhfreeyoursmind.hashnode.dev·Oct 26, 2023Most asked question "Pass data from Child to Parent" with multiple examples...."State lifting" is a concept of React, State lifting refers to the practice of moving the state of a component higher up in the component tree, making it accessible to multiple child components. This is typically done to share state and synchronize t...react-lifting-state-up
Smart Shocksmartshock.hashnode.dev·Apr 3, 2023Passing Data Between Components in ReactOne of the most important features of React is the ability to pass data between components. In this article, we'll explore how to pass data between a parent component and a child component in React. The Parent Component First, let's create our parent...10 likes·56 reads25 React Exercises for Practical LearningReact