A collection of high-quality UI components for React Native mobile apps, designed to help you build amazing apps quickly and easily. This package provides both basic and advanced components, including buttons, inputs, forms, navigation, and more.
yarn add react-native-custom-component-x
npm i react-native-custom-component-x
import {
Button,
Input,
Form,
Navigation,
} from "react-native-custom-component-x";
const App = () => (
<View>
<Button title="Submit" />
<Input placeholder="Enter your name" />
<Form>Form content here</Form>
</View>
);
A customizable button component for your app.
A text input component for user input.
A form component for creating forms in your app.
A navigation component for navigating between screens in your app.