Steve·May 31Why TanStack Query Has Become a Standard for Modern React Native ApplicationsTanStack Query is not simply a data-fetching library. It is an architectural layer that applies proven software engineering patterns such…
Steve·May 23Beyond KeyboardAvoidingView: The Evolution of Keyboard Management in React NativeIntroduction
Steve·Jul 16, 2024React Native Navigation with Nesting Navigators in Advanced — Part 1Navigating through screens in a React Native application, especially with nested navigators, requires careful handling, especially when…
Steve·Jun 20, 2024How to Pass Data Back When Using goBack in React Native Navigation (without callback)Passing data back between screens in React Native Navigation can be a bit tricky, especially if you want to avoid warnings and potential…
Steve·May 13, 2024Saving a file to External Storage in the public directory on Android results in an EACCES…Starting from API level 29, the method getExternalStoragePublicDirectory is deprecated. Therefore, when attempting to write a file to…
Steve·Apr 5, 2024React Native Automation Testing with Appium 2.0 — WebdriverIOIf you are looking for an article on setting up automation testing using Appium in React Native, I hope this article will help you.A response icon1A response icon1
Steve·Feb 28, 2024Implementing Restart App Functionality in React Native with Native Modules (Java, Objective-C) new…Android Native module:A response icon2A response icon2
InStackademicbySteve·Sep 26, 2023How to Add Skeleton Loading to an Image React Native ReanimatedA comprehensive guide to adding skeleton loading to an image with useSharedValue without useState, Smoothly with React Native Reanimated
Steve·Sep 13, 2023What is the difference between @react-navigation/stack vs @react-navigation/native-stack?@react-navigation/stack and @react-navigation/native-stack are two different stack navigation libraries used in React Native applications…
Steve·Sep 4, 2023Building an Animated Bottom Sheet in React NativeReanimated and React Native Gesture HandlerA critical aspect of any animation-based component is state management. In this code, the offset variable is managed using Reanimated's…