Drawer.Item
A component used to show an action item with an icon and a label in a navigation drawer.
 
  Usage
import * as React from 'react';
import { Drawer } from 'react-native-paper';
const MyComponent = () => (
   <Drawer.Item
     style={{ backgroundColor: '#64ffda' }}
     icon="star"
     label="First Item"
   />
);
export default MyComponent;Props
accessibilityLabelType: 
stringAccessibility label for the button. This is read by the screen reader when the user taps the button.
rightType: 
(props: { color: string }) => React.ReactNodeCallback which returns a React element to display on the right side. For instance a Badge.
styleType: 
StyleProp<ViewStyle>themeType: 
ReactNativePaper.Theme