Meta is the core owner of the code.
A framework for building native applications using React.
These companies are endorsed by Meta and the React Native team.
These companies use React Native in a major way.
Not perfect but nice for prototyping
Issues with accessibility https://guild.host/
import React from "react";
import { StyleSheet, Text, View } from "react-native";
const LotsOfStyles = () => {
return (
<View style={styles.container}>
<Text style={styles.red}>just red</Text>
<Text style={styles.bigBlue}>just bigBlue</Text>
<Text style={[styles.bigBlue, styles.red]}>bigBlue, then red</Text>
<Text style={[styles.red, styles.bigBlue]}>red, then bigBlue</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
marginTop: 50,
},
bigBlue: {
color: "blue",
fontWeight: "bold",
fontSize: 30,
},
red: {
color: "red",
},
});npx create-expo-app my-app

Not necessary anymore
Custom Expo Go development builds https://docs.expo.dev/bare/using-expo-client/