Posts

Showing posts with the label React native

React Native Fundamentals

Image
React Fundamentals, ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE   React Fundamentals React Native runs on  React , a popular open-source library for building  user interfaces with JavaScript. To make the most of React Native, it helps to understand React itself. This section can get you started or can serve as a refresher course   Here, we will learn how to create a simple Hello World in react native   Let’s create a simple application of React Native We will follow the below command to create a Hello Worlds in React Native   Use below command to install React native ·       npm install –g react-native-cli   The above instructions work best if you need to build native code in your application or want to integrate React Native in an existing application. If you want to quickly prototype an application and you can use  Create React Native App  module that is very similar to Create React App   We will use the  Expo c

How to get Array value in Angular ?

How to get Array value in Angular ? , ANGULAR WITH CORE .NET AND MVC RAZOR ENGINE How to get Array value in Angular? In this article we will learn , How to get array value in Angular . Step 1 : Create a new Angular Project using below command ng new angular-tour-of-heroes Step 2 : Create a new component using below command ng generate component how-to-get-array-value-in-angular Step 3 : Add Below code in how-to-get-array-value-in-angular.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-how-to-get-array-angular', templateUrl: './how-to-get-array-angular.component.html', styleUrls: ['./how-to-get-array-angular.component.scss'] }) export class HOWTOGETArrayAngularComponent implements OnInit { fruits = ['Apple', 'Orange', 'Banana', 'blackberry', 'blackcurrant', 'blueberry', 'cherry' , 'coconut'