@storybook/addon-ondevice-backgrounds
Version:
A react-native storybook addon to show different backgrounds for your preview
30 lines (18 loc) • 968 B
Markdown
Storybook Backgrounds Addon for React Native can be used to change background colors of your stories right from the device.
```sh
yarn add -D @storybook/addon-ondevice-backgrounds
```
Then, add following content to `.rnstorybook/main.ts`:
```ts
import { StorybookConfig } from '@storybook/react-native';
const main: StorybookConfig = {
addons: ['@storybook/addon-ondevice-backgrounds'],
};
export default main;
```
See the [example of using the Backgrounds Addon with Component Story Format](../../examples/expo-example/components/BackgroundExample/BackgroundCsf.stories.tsx). You can also run the [react-native app](../../examples/expo-example) to see it in action.
The [web Backgrounds Addon documentation](https://storybook.js.org/docs/react/essentials/backgrounds) may also be useful, but the examples there have not been tested with Storybook for React Native.