Remember how I compared building this app to navigating Himalayan switchbacks? Well, buckle up we're hitting another hairpin curve in development! After solving the SOS/location sharing puzzle, I turned to my second core feature: creating trustworthy...
React is a powerful tool for building modern user interfaces, whether you're developing for the web or mobile. But if you've worked with ReactJS and are now exploring React Native, you've probably noticed—things don't work quite the same, especially ...
Note: This article was originally published on November 20, 2016. Some information may be outdated. React Native lets you write JavaScript and render real native UI components on iOS and Android.By late 2016 the framework had stabilised (v0.39, Nove...
Meaning 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...
Note: Flexbox works same as it works in CSS for web (Visit). The only difference is that in web by default flex direction is row but in React Native it is column. That is the main axis and the cross axis are interchanged in comparison with CSS. Layou...
Introduction Welcome to Day 4 of my web development journey!For the past few days, I’ve been diving into ReactJS after completing the fundamentals of HTML, CSS, and JavaScript. I'm sharing my learning process in public to stay consistent and hopefull...
There are many valid ways to organize a project. Here we recommend a few common approaches for projects of different sizes, but if you're already familiar with web development, you can organize your project the same way you would for a web app Small ...
In this blog we will see the overview of StyleSheet import React, { JSX } from "react"; import { View, Text, StyleSheet, useColorScheme, } from "react-native" function AppPro(): JSX.Element { const isDarkMode = useColorSchem...
“Any sufficiently advanced technology is indistinguishable from magic.” — Arthur C. Clarke When it comes to choosing the right tech stack for your next digital product, the decision often narrows down to one critical comparison: React JS vs React N...
In this blog we will learn how to create a react native app Step 1: Creating a new application Make a folder with any name and open it in VS Code In my case i have created the folder React Native Run the following commands npx @react-native-com...