Skip to main content

Related Articles

React Native for Beginners

We can make native portable mobile applications utilizing JavaScript and React. It utilizes React to make a rich versatile UI interface. 

Presently, the inquiry strikes a chord, who's utilizing React Native? According to the official site, a huge number of applications are utilizing React Native from set up fortune 500 to up and coming new businesses. A portion of the well known applications that are utilizing React Native incorporate Facebook, Instagram, Bloomberg, Pinterest, Uber, Skype and so on 

Prior to beginning, it's suggested that you have the essential information on JavaScript and React so you can comprehend the React Native applications. 

Setting up the Environment

To begin, we need the underneath application introduced in the framework. 

NodeJS and NPM 

Python

Java SE Advancement Pack (JDK) 

Android SDK, Android Virtual Gadgets 

Visual Studio Code

Introducing and setting up the environment for React Native applications is simple. You need to download the bundles from the particular website and snap on Straightaway and Next catches. Be certain that you have introduced all the referenced applications required for the React application. 

You can discover more subtleties of the way toward setting up the environment on the React Native official site. Presently, open the command prompt, and run the beneath command. 

npm i -g create-react-native-app

It will download the bundles needed to make a React Native application. Type make react-native-application <HelloWorld> and hit Enter. 

create-react-native-app HelloWorld

During the establishment, the npm will request one extra bundle, i.e., Expo which loads and runs the CRNA venture written in unadulterated JavaScript without incorporating any native code. It is free and open source toolchain worked around React Native to assist you with building iOS and Android ventures utilizing JavaScript and React. In the event that, npm requests the establishment of Expo, select "Y", i.e., Yes. At that point, it will request to pick a format. Select the Clear layout, as we are attempting to keep it as basic as could reasonably be expected. 

? Choose a template:

blank

minimum dependencies to run and an empty root component

tabs

several example screens and tabs using react-navigation


It will take a couple of moments to extricate the undertaking documents and introduce the conditions. 

When the task is made effectively, change the catalog to the application name gave by you during application creation (for my situation, it is Hello World). 

cd HelloWorld

Run the npm start command to begin the application. 

npm start

It will begin the Expo and show a QR code which can be examined utilizing Expo in Android gadgets to begin a metro bundler as a worker on the localhost. 

You can straightforwardly run the application on an actual gadget with the Exhibition Application. Open Play Store on your Android Gadget.  

Subsequent to introducing the Exhibition application, you have to filter the QR Code. 

Or then again, you can run it on the Android Virtual Machines. Open the AVD Supervisor in your framework, make an Android Machine by tapping on the "Create" button. It will request a couple of subtleties to give the Gadget Name, select Picture, Memory Size, and different alternatives in the virtual machine. 

Whenever everything is done, click on "Start". It will require some investment to begin the Virtual Machine. 

After the virtual gadget begins, you will see something like beneath. 

Run on Android gadget/emulator


In Metro Bundler, click "Run on Android gadget/emulator" and the application will be stacked in the Android Virtual Gadget. 

An application will be stacked or begun in the Android Virtual Gadget. 

How about we open the application in Visual Studio Code and snap on App.js record to alter. 

Hello World


To show a basic message, similar to "Hello World", we have to change the content between the Content labels. Change the content to "Hello World" and run the application once more. You will see Hello World on the application. 

On checking the QR Code with the Android gadget, you will see the ideal yield too.

Comments

Popular posts from this blog

The Power of ChatGPT and Whisper Models

A Deep Dive into Natural Language Processing Natural Language Processing (NLP) has seen a significant boost in recent years due to advancements in artificial intelligence and machine learning. Two models that have shown remarkable success in NLP are ChatGPT and Whisper. In this article, we will delve into the power of these models and their applications in the field of NLP. ChatGPT is a transformer-based language model developed by OpenAI that uses unsupervised learning to predict the next word in a sentence based on the context of previous words. ChatGPT is a generative model that is trained on large datasets of text, such as books and articles, and can be fine-tuned for specific tasks, such as question-answering or dialogue generation. ChatGPT is known for its ability to produce human-like text, making it an ideal tool for applications such as chatbots, content creation, and language translation. Whisper, on the other hand, is a paraphrasing model developed by Google that is based on...

SMPP protocol library for fast and easy SMSC(Short Message Service Centre) client development even for non-telecom guys

SMS sending through .NET C# is really easy. But most of the guys face many issues with SMSC client developments. SMPP protocol has many parameters to configure, but for simple SMPP gateway application you need very few of them to configure correctly. This article will cover how to implement SMSC client application using EasySMPP library. EasySMPP is a free SMPP library used by many people to implement SMS sending applications. There are many SMPP libraries but EasySMPP library is very easy to use and relatively stable. EasySMPP library mainly contain five class library projects. KernelParameters, SMPPClient, SMSClient, SMSService and Tools are the library projects and you only need to use SMSClient library to implement SMPP client application. First download EasySMPP library and add class library project to your .NET C# solution.  1. public bool SendSms( string from, string to, string text)

Setting up the react native development environment

  This tutorial I am going to focus on how to install and build your first React Native application. There are two methods you can follow to develop React Native app. If you are very new to mobile development and not familiar with setting up mobile development environment, I would suggest to start with Expo CLI. Expo is a set of tools to build React Native application. It has may features; you have to select suitable features to develop your app in minutes. You need only a recent version of Node.js and a phone or emulator. If you want to test your React Native application on your web browser before installing any tools, you may use Snack.   If you are familiar mobile developer from other languages and want to try out React Native, you may try out React Native CLI. For that you need to install either Xcode for iOS or Android Studio for Android OS.   If you are a beginner, my personal suggestion is to go for Expo CLI and familiar with the React Native features and...