To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

De Wikipedia, la enciclopedia libre

React Native, es un framework de código abierto creado por Meta Platforms, Inc.[1]​ Se utiliza para desarrollar aplicaciones para Android,[2]Android TV,[3]iOS, macOS,[4]tvOS, Web,[5]Windows[4]​ y UWP[6]​ al permitir que los desarrolladores usen React con las características nativas de estas plataformas.[7]​ También se utiliza para desarrollar aplicaciones de realidad virtual con Oculus.[8]

Ejemplo en Hello World

Un programa Hello World en React Native, se codificaría de la siguiente manera:

import { AppRegistry, Text } from 'react-native';
import * as React from 'react';

const HelloWorldApp = () => {
  return <Text>Hello world!</Text>;
}

export default HelloWorldApp;

AppRegistry.registerComponent('HelloWorld', () => HelloWorldApp);

Referencias

  1. «1. What Is React Native? - Learning React Native [Book]». www.oreilly.com (en inglés). Consultado el 7 de marzo de 2022. 
  2. «React Native for Android: How we built the first cross-platform React Native app». Engineering at Meta (en inglés estadounidense). 14 de septiembre de 2015. Consultado el 7 de marzo de 2022. 
  3. «React Native · Learn once, write anywhere». reactnative.dev (en inglés). Consultado el 7 de marzo de 2022. 
  4. a b «React Native for Windows + macOS · Build native Windows & macOS apps with Javascript and React». microsoft.github.io. Consultado el 7 de marzo de 2022. 
  5. Gallagher, Nicolas (7 de marzo de 2022), React Native for Web, consultado el 7 de marzo de 2022 .
  6. Blog, Windows Developer (13 de abril de 2016). «React Native on the Universal Windows Platform». Windows Developer Blog (en inglés estadounidense). Consultado el 7 de marzo de 2022. 
  7. «Out-of-Tree Platforms · React Native». reactnative.dev (en inglés). Consultado el 7 de marzo de 2022. 
  8. «React Native in H2 2021 · React Native». reactnative.dev (en inglés). 19 de agosto de 2021. Consultado el 7 de marzo de 2022. 

Véase también

Esta página se editó por última vez el 4 nov 2023 a las 23:26.
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.