React Native

React Native
Información general
Tipo de programa JavaScript
Desarrollador Meta Platforms
Lanzamiento inicial 2015
Licencia Licencia MIT
Información técnica
Programado en
Versiones
Última versión estable 0.85.35 de mayo de 2026
Enlaces

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

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.