importReactfrom'react';import{StyleSheet,Text,View}from'react-native';classAppextendsReact.Component{render(){return(<Viewstyle={styles.container}><Text>Welcome to MySocialNetwork!</Text></View>);}}conststyles=StyleSheet.create({container:{flex:1,backgroundColor:'#fff',alignItems:'center',justif...
As I already mentioned, in the official React Native documentation we have two options to consider: react-navigation from React Native community and react-native-navigation from Wix. In this deep comparison, we will discuss multiple aspects from the first impression using each one of them to perf...
In this tutorial, you will learn how to use; ReactNative, CometChat, and Firebase to build a one-on-one chat app with a stunning UI.
React Native currently supports both iOS and Android and has the potential to expand to future platforms as well. In this blog, we’ll cover both iOS and Android. The vast majority of the code we write will be cross-platform. And yes: you can really use React Native to build production...
Learn how to use React Router with TypeScript in your React applications, including route definitions, navigation, and props handling.
This post is about How to Hide Navigation Option from Navigation Drawer / Sidebar in React Native. We will use react-navigation to make a navigation drawer in this example. I hope you have already seen our last post onReact Native Navigation Drawerbecause in this post we are just extending ...
Before you start learning React, you need a solid foundation in several web technologies. React itself is a JavaScript library. So, you will benefit from understanding JavaScript fundamentals to use it effectively. This includes things like functions, objects, arrays, DOM manipulation, and ES6 synta...
Join the Conversation Leave a Comment on How to Advertisement 17 views Parent Page React Native Child Pages Add Tab Navigator Add Native Navigation Add Linear Gradient Add Drawer NavigationBelow is the list of all common How to questions of React Native. Add Drawer Navigation Add Linear Gradient...
with apk then this is the way to reduce sizes. Basically 2 major architectures, armeabi & x86, are supported by Android devices. When APK is generated via React Native, it contains the native libraries of both the architectures. In order to generate 2 different APKs use the following ...
Oftentimes, when building a React Native app, you'll compose it from different screens like Login, Home, and About. You'll then need to implement a navigation mechanism so your users can navigate the app and access its individual screens in the right order. The purpose of this tutorial is...