v0.0.8
you can now import Please note this was removed in 1.0.0HeaderButtons
with predefined IconComponent
, see the comparison.
ex:
import { IoniconHeaderButtons, Item } from 'react-navigation-header-buttons'
static navigationOptions = {
title: 'Usage With Icons',
headerRight: (
<IoniconHeaderButtons color="blue">
<Item title="add" iconName="ios-search" onPress={() => console.warn('add')} />
<Item title="select" onPress={() => console.warn('edit')} />
</IoniconHeaderButtons>
),
};