blob: db87b892a345180abb68b1de05ffd424a00cfa8f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import * as React from 'react'
import { View, Alert } from 'react-native'
import { storiesOf } from '@storybook/react-native'
import { StoryScreen, Story, UseCase } from '../../../storybook/views'
import { Header } from './header'
import { color } from '../../theme'
declare let module
const VIEWSTYLE = {
flex: 1,
backgroundColor: color.storybookDarkBg,
}
storiesOf('Header', module)
.addDecorator((fn) => <StoryScreen>{fn()}</StoryScreen>)
.add('Behavior', () => (
<Story>
<UseCase noPad text="default" usage="The default usage">
<View style={VIEWSTYLE}>
<Header headerTx="demoScreen.howTo" />
</View>
</UseCase>
<UseCase noPad text="leftIcon" usage="A left nav icon">
<View style={VIEWSTYLE}>
<Header
headerTx="demoScreen.howTo"
leftIcon="back"
onLeftPress={() => Alert.alert('left nav')}
/>
</View>
</UseCase>
<UseCase noPad text="rightIcon" usage="A right nav icon">
<View style={VIEWSTYLE}>
<Header
headerTx="demoScreen.howTo"
rightIcon="bullet"
onRightPress={() => Alert.alert('right nav')}
/>
</View>
</UseCase>
</Story>
))
|