mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-05-12 09:02:51 +08:00
17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
import DefaultHeaderButtons from 'react-navigation-header-buttons';
|
|
import * as React from 'react';
|
|
import { Platform } from 'react-native';
|
|
|
|
export class HeaderButtons extends React.PureComponent {
|
|
static Item = DefaultHeaderButtons.Item;
|
|
|
|
render() {
|
|
return (
|
|
<DefaultHeaderButtons
|
|
// color={Platform.OS === 'ios' ? '#037aff' : 'black'}
|
|
{...this.props}
|
|
/>
|
|
);
|
|
}
|
|
}
|