IIrfaninreact-native-guide.hashnode.dev·Jul 21, 2025 · 2 min readHaptic Feedback in React nativeHaptic feedback means dealing with the vibration of the mobile. It is troublesome for implementing it. In this we will walk through a detail implementation of implementing haptic feedback Installing the package we need to install a third party npm pa...00
IIrfaninreact-native-guide.hashnode.dev·Jul 20, 2025 · 2 min readFormikWe all know how much pain is it in using forms in React. To make matters worse, most form helpers do way too much magic and often have a significant performance cost associated with them. Formik helps users in 3 ways: Getting values in and out of fo...00
IIrfaninreact-native-guide.hashnode.dev·Jul 17, 2025 · 5 min readReact HooksHooks let you use different React features from your components. You can either use the built-in Hooks or combine them to build your own. React Hooks are functions introduced in React 16.8 that allow developers to use state and other React features w...00
IIrfaninreact-native-guide.hashnode.dev·Jul 17, 2025 · 2 min readYup: The ultimate Schema validatorWhat is Yup ? Yup is a schema builder for runtime value parsing and validation. Define a schema, transform a value to match, assert the shape of an existing value, or both. Yup schema are extremely expressive and allow modeling complex, interdependen...01L
IIrfaninreact-native-guide.hashnode.dev·Jul 13, 2025 · 2 min readLinking in React NativeMeaning Linking in React Native gives us an Interface to interact with both incoming and outgoing app links Every link (URL) has an url Schema like for example some websites are prefixed with https:// or http://, here http is the url schema. This wor...00