minimal-uniwind template, and then we added all UI components, so you can use them immediately without extra setup.
You can explore the full component catalog at the official docs:https://reactnativereusables.com/docs/components/accordion
How components are wired into the template
The CLI has already copied the reusable components into the project and wired them up with Uniwind (this is tailwind for react native and also manages the global theme state) and the app theme.- RNR Components live in the
@/components/ui/directory. You can import them like:@/components/ui/<component_name> - They are styled with Tailwind-like classes via Uniwind, so you pass
classNameinstead ofstyleand the design stays consistent across the app. - They automatically respect the current light / dark theme set by Uniwind.
ButtonExample.tsx
Button and Icon are React Native Reusables components that accept Tailwind-like className props and pick up the active theme automatically.