yadavrajshekhar.hashnode.devShared Element Transition with React Native ReanimatedIntroduction React Native Reanimated is a powerful animation library for React Native applications. It provides a declarative and flexible way to create complex and high-performance animations. With React Native Reanimated, developers can achieve smo...Jul 4, 2023·3 min read
yadavrajshekhar.hashnode.devuseContext() Hook : Let's consume itIntroduction In the previous part I have explained about the basic idea behind the useReducer() hooks. In this article I will try to explain about another useful hook useContext . We will discus about how to use what useContext is and how to use it...Jan 23, 2022·5 min read
yadavrajshekhar.hashnode.devuseReducer() Hook: Let me dispatch itIntroduction In previous article, I have tried to explain the useState hook. The word reducer might present a thought about Redux but don’t worry you don’t have to think about it. I will try to explain what useReducer is and how to use it. Whe...Jan 16, 2022·4 min read
yadavrajshekhar.hashnode.devuseState: Function can have state?Introduction There are two types of component in React-native class component & Functional component. useState is a hook that allows a functional component to store state variable. If you are working with class component, It is equivalent to this.st...Jan 9, 2022·5 min read
yadavrajshekhar.hashnode.devReact-Navigation : Navigate with StackReact-Navigation The community solution to navigation is a standalone library that allows developers to set up the screens of an app with a few lines of code. A Single screen mobile application is uncommon. For managing multiple screens and their b...Dec 30, 2021·4 min read