FRFahad Rizwaninraid3n.hashnode.dev·Jul 9, 2025 · 3 min readPowerSync React Native Background SyncingTo ensure your app can sync changes in the background using PowerSync, you'll need a few essential dependencies provided by Expo: expo-background-fetch (for SDKs below 53) or expo-background-task (for SDK 53 and above) expo-task-manager These lib...00
FRFahad Rizwaninraid3n.hashnode.dev·Aug 27, 2024 · 5 min readCI/CD for React NativeFor github actions you need to create your own personal access token and add them to your repository secrets. For Android Create a YAML file inside .github/workflows in your react native project directory. You can name it something like android-ci.ym...00
FRFahad Rizwaninraid3n.hashnode.dev·Jul 31, 2024 · 2 min readRefactoring using VimHow I refactored my variable across multiple files using vim Problem: A variable that needed to be refactored in over 100 occurrences but exclude my imports and also add a new line in each of my files that had that variable. Goal: //My component impo...00
FRFahad Rizwaninraid3n.hashnode.dev·Jan 8, 2024 · 3 min readHow to limit Scan Area ~expo-barcode-scannerI was creating an app for iOS using expo, where I had to scan multiple QR codes but the problem was the whole camera acted as a scanner so it scanned the first QR code that was visible in the camera. I tried different libraries such as react-native-v...00