react-native-navigation-drilldown
Version:
Drilldown screens to use with react-navigation
11 lines (10 loc) • 431 B
TypeScript
import * as React from 'react';
import { ItemViewProps } from './types';
export default class ItemView extends React.PureComponent<ItemViewProps> {
onPress: () => void;
renderContent: () => React.ReactElement<any> | null;
renderTitle: () => React.ReactElement<any> | null;
renderLeftIcon: () => React.ReactElement<any> | null;
renderRightIcon: () => React.ReactElement<any> | null;
render(): JSX.Element;
}