Ui
@expo/ui
A collection of UI components
React Native Libraries
react
react-native
expo
UI components
SwiftUI
Jetpack Compose
cross platform
web
universal
@expo/ui
Stars
480
Weekly
2.4M
Open issues
6
Bundle
~25 kB
Installation
npm install @expo/uiCode example
import { View, Text, StyleSheet } from "react-native";
import { Ui } from "@expo/ui";
export function Example() {
return (
<View style={styles.box}>
<Text style={styles.title}>Ui</Text>
<Ui />
</View>
);
}
const styles = StyleSheet.create({
box: { flex: 1, alignItems: "center", justifyContent: "center", gap: 8 },
title: { fontSize: 18, fontWeight: "600" },
});Pros & cons
Pros
- Actively maintained by 650 Industries, Inc.
- 2.4M weekly downloads. Battle tested
- MIT licensed
Considerations
- Adds roughly ~25 kB to your bundle
- Needs client-only rendering in SSR frameworks
- 6 open issues on GitHub