storybook/addons/ondevice-backgrounds
Michael Shilman d597cdd048 v5.2.0-beta.2
2019-07-18 22:21:11 +08:00
..
2019-04-03 08:51:37 -04:00
2019-07-16 14:17:11 +02:00
2019-07-18 22:21:11 +08:00
2019-04-04 21:14:23 -04:00

Storybook Backgrounds Addon for react-native

Storybook Backgrounds Addon for react-native can be used to change background colors of your stories right from the device.

Storybook Backgrounds Addon Demo

Installation

yarn add -D @storybook/addon-ondevice-backgrounds

Configuration

Create a file called rn-addons.js in your storybook config.

Add following content to it:

import '@storybook/addon-ondevice-backgrounds/register';

Then import rn-addons.js next to your getStorybookUI call.

import './rn-addons';

Usage

react-native users will have to import storiesOf from @storybook/react-native and are required to add the withBackgrounds decorator.

Then write your stories like this:

import React from 'react';
import { storiesOf } from '@storybook/react-native';
import { withBackgrounds } from '@storybook/addon-ondevice-backgrounds';

addDecorator(withBackgrounds);

storiesOf('Button', module)
  .addParameters({
    backgrounds: [
      { name: 'dark', value: '#222222' },
      { name: 'light', value: '#eeeeee', default: true },
    ],
  })
  .add('with text', () => <Text>Click me</Text>);

See web backgrounds addon for detailed usage and the crna-kitchen-sink app for more examples.