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. What Is React Native? - Learning React Native [Book]». www.oreilly.com (en inglés). Consultado el 7 de marzo de 2022.
- ↑ «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.
- ↑ «React Native · Learn once, write anywhere». reactnative.dev (en inglés). Consultado el 7 de marzo de 2022.
- ↑ 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.
- ↑ Gallagher, Nicolas (7 de marzo de 2022), React Native for Web, consultado el 7 de marzo de 2022.
- ↑ 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.
- ↑ «Out-of-Tree Platforms · React Native». reactnative.dev (en inglés). Consultado el 7 de marzo de 2022.
- ↑ «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
Portal:Software libre. Contenido relacionado con Software libre.
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.
- 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:
- 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.
- 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.
- 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.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.