Customization

Components

Manage and customize your app components.

For the components part, we're using react-native-reusables for atomic, accessible and highly customizable components.

It's like shadcn/ui, but for mobile apps.

Why react-native-reusables?

react-native-reusables is a powerful tool that allows you to generate pre-designed components with a single command. It's built with Nativewind (like Tailwind CSS for mobile) and accessiblity in mind, it's also highly customizable.

TurboStarter defines two packages that are responsible for the UI part of your app:

  • @turbostarter/ui - shared styles, themes and assets (e.g. icons)
  • @turbostarter/ui-mobile - pre-built UI mobile components, ready to use in your app

Adding a new component

There are basically two ways to add a new component:

TurboStarter is fully compatible with react-native-reusables CLI, so you can generate new components with single command.

Run the following command from the root of your project:

pnpm ui:mobile:add

This will launch an interactive command-line interface to guide you through the process of adding a new component where you can pick which component you want to add.

Newly created components will appear in the packages/ui/mobile/src directory.

Keep it atomic

Keep in mind that you should always try to keep shared components as atomic as possible. This will make it easier to reuse them and to build spefiic views by composition.

E.g. include components like Button, Input, Card, Dialog in shared package, but keep specific components like LoginForm in your app directory.

Using components

Each component is a standalone entity which has a separate export from the package. It helps to keep things modular, avoid unnecessary dependencies and make tree-shaking possible.

To import a component from the UI package, use the following syntax:

apps/mobile/src/components/my-component.tsx
import {
  Card,
  CardContent,
  CardHeader,
  CardFooter,
  CardTitle,
  CardDescription,
} from "@turbostarter/ui-mobile/card";

Then you can use it to build a component specific to your app:

apps/mobile/src/components/my-component.tsx
export function MyComponent() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>My Component</CardTitle>
      </CardHeader>
      <CardContent>
        <Text>My Component Content</Text>
      </CardContent>
      <CardFooter>
        <Button>Click me</Button>
      </CardFooter>
    </Card>
  );
}

Think of it the same as for the web

Most of the components are the same as for the web app.

It means that you can basically migrate existing web components to the mobile app with just an import change!

react-native-reusables

rnr-docs.vercel.app

Last updated on

On this page

Ship your startup everywhere. In minutes.Get TurboStarter