Tag Archives: react
Responsive React Components
React is awesome and the whole world agrees to it unanimously. Development is a whole lot faster and easier when we look at everything as components. Since everything is JavaScript driven, React renders only the code that is necessary based on application’s state. It doesn’t matter if you have over a thousand components and tens of […]
Offline image caching in React Native and Expo
I recently worked on an app which required content stored online, but available offline. This content (loaded from a json file) included links to images, so I needed an easy way to show the online version if available, or else have a fallback to a previously downloaded image. I decided the best option was to […]
React Native Publishing an Android App
Add/Create Keystore This command will create a keystore with the given name if the file doesn’t exist or append a key to a current keystore. keytool -genkey -v -keystore mykeystore.keystore -alias mykeyalias -keyalg RSA -keysize 2048 -validity 10000 After you have generated the mykeystore.keystore file copy it to android/app. Setting up gradle variables Append the snippet […]