Menu
A versatile menu for navigation.
import { Divider, Menu } from '../components'
<Menu
items={['Item 1', 'Item 2', 'Item 3']}
/>
Menu also may contain icons
, to provide a better user interfaces.
import { Divider, Menu } from '../components'
<Menu
items={[<View
style={{
alignItems: 'center',
flexDirection: 'row',
color: 'inherit',
}}
>
<Text style={{ color: 'inherit' }}>One</Text>
<Icon name={'staro'} size={20} style={{ marginLeft: 5 }} />
</View>,
<View
style={{
alignItems: 'center',
flexDirection: 'row',
color: 'inherit',
}}
>
<Text>Two</Text>
<Icon name={'staro'} size={20} style={{ marginLeft: 5 }} />
</View>,
<View
style={{
alignItems: 'center',
flexDirection: 'row',
color: 'inherit',
}}
>
<Text>Three</Text>
<Icon name={'staro'} size={20} style={{ marginLeft: 5 }} />
</View>,}]
/>
Last updated