Skip to main content
Version: 4.0.0-rc.6

Typescript

TypeScript definitions for your theme can be extended by using TypeScript's declaration merging feature. First you need to create a declaration file called themed.d.ts and then declare the module @rneui/themed and 're-export' the types that you want to extend. i.e. below we add a custom p1Style to the Text theme object and we add a bunch of colors to the colors object.

Adding custom colors

TypeScript will only autocomplete RNE's default colors when accessing the theme. To add your custom colors to the Colors type, you can use TypeScript module declaration:

import '@rneui/themed';

declare module '@rneui/themed' {
export interface Colors {
primaryLight: string;
primaryDark: string;
secondaryLight: string;
secondaryDark: string;
}
}

Then when you create your ThemeProvider instance,

const theme = createTheme({
lightColors: {
...yourCustomColorShape
},
darkColors: {
...yourCustomColorShape
},
mode: // your light or dark mode value
})
const App = () => {
const { theme } = useTheme();
return <Text style={{ color: theme.colors.primaryLight }} />;
};

Adding custom 'other' properties

Similar to how you can extend/set custom colors, you can add your own properties to the theme type using TypeScript module declaration:

import '@rneui/themed';

declare module '@rneui/themed' {
export interface Theme {
myCustomProperty: string;
myCustomFunction: () => void;
}
}
const App = () => {
const { theme } = useTheme();
return <Text>{theme.myCustomProperty}</Text>;
};

Extending RNE default components

If you need to extend some props of RNE's default components, you can use TypeScript module declaration, Also remember to extend ComponentTheme too.

import '@rneui/themed';

declare module '@rneui/themed' {
export interface TextProps {
bold: boolean;
}

export interface ComponentTheme {
Text: Partial<TextProps>;
}
}

For eg. You can use the following code to extend the Text component:

const myTheme = createTheme({
Text: (props) => ({
style: {
fontWeight: props.bold ? 'bold' : 'normal',
},
}),
});

and use it like this

const App = () => {
const { theme } = useTheme();
return (
<View>
<Text>Normal Text</Text>
<Text bold>Bold Text</Text>
</View>
);
};

Using the theme in your own components

You may want to make use of the theming utilities in your own components. For this you can use the withTheme HOC exported from this library. It adds three props to the component it wraps - theme, updateTheme and replaceTheme.

import { withTheme } from '@rneui/themed';

type MyCustomComponentProps = {
title: string;
titleStyle: StyleProps<TextStyle>;
};

export const MyCustomComponent = withTheme<MyCustomComponentProps>((props) => {
// Access theme from props
const { theme, updateTheme, replaceTheme } = props;
// ...
});

declare module '@rneui/themed' {
export interface ComponentTheme {
MyCustomComponent: Partial<MyCustomComponentProps>;
}
}
import { ThemeProvider, createTheme } from '@rneui/themed';

const myTheme = createTheme({
components: {
MyCustomComponent: {
titleStyle: {
color: 'red',
},
},
},
});

const App = () => {
return (
<ThemeProvider theme={myTheme}>
<MyCustomComponent title="My Component" />
</ThemeProvider>
);
};