© 2023 Hashnode
#react-native
React Native is an open-source platform released by Facebook in 2015. React Native allows developers to build hybrid applications that run on Android and iOS. In contrast, traditional mobile app devel…
React Native 0.71 is here, and it's bringing some big new features to the table. You can now embed Web fonts in your React Native apps We've been shipping Web fonts in React Native for a while, but…
The purpose of writing this blog is to give a simple explanation of SQLite in React Native, and how you can implement it. Setting up SQLite in our project Creating ProductsDB file Using ProductsDB …
Hey fellow developers! 🤓 Today, I'm going to talk about one of the common mistakes React and TypeScript beginners make while working with the children prop. So, you've built a reusable button compone…
The first time I heard about Solid it sounded really scary, however, I was able to adapt after a few studies and practical experimentation. S.O.L.I.D refers to five design principles for writing maint…
Welcome you all to a brand new series on react native in this series on Desidev's blog We will discuss technology surrounding react native. Prerequisite ReactJS Javascript (ES6) Tools To start wit…
How does styling work in React Native? Styling in React Native is done using JavaScript. Since React components have support for the style prop, you can also create an object of style values and pass …
In React Native, you can use Flexbox to layout your components. Flexbox is a layout system that is optimized for handling things like spacing, alignment, and proportion. It allows you to easily contro…
Introduction To start with react-native, there are a few essential components a newbie needs to learn. Some of them are - View, Text, Image, ScrollView, and TextInput. Let's learn them one by one : View - The View component in React Native …
In this blog, I will demonstrate how you can use the radio button inside your react-native app. Table of Contents: Introduction Use cases Problem Number of ways to implementation Implementation c…