Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
A strongly typed themeable design system for react native
Add react-native-typed-ui to the dependencies
or if you are using yarn,
React Native Typed UI requires you to initialize the components using createTypedComponents
module with a default light theme object & a dark theme object.
Your design system is represented as the theme object. The components created using the createTypedComponents
module will have the required types to work with your theme object. The idea behind Typed UI is to create strong typescript bindings between the components you use & your design system.
The useThemeToggle
hook will help you change your theme modes between light & dark. useChangeDarkTheme
& useChangeLightTheme
hooks will let you change your theme on the fly.
The following example is built using three different themes, each having its own dark mode version.
Wrap your application's Root component inside the ThemeProvider
component. This will add your theme to the React's context and lets all the child elements use the required theme configuration.
Box
component is the most basic layout component. It is built using a regular React Native <View/>
component. However, the primary props of the Box
component are ViewStyles
that will work with your theme configuration.
For example, If your theme has the following configuration
The Box
component can use this color & spacing in it's attributes as
The following is a simple navbar built using the default theme configuration
It will produce the following component ﹣