import color from "color"; import * as React from "react"; import { View, ViewStyle, StyleProp } from "react-native"; import Text from "../Text"; import Divider from "../Divider"; import { DefaultTheme, ThemeContext } from "styled-components"; import styled from "styled-components/native"; const DrawerSectionContainer = styled.View` margin-bottom: 4px; `; const DrawerSectionTitleContainer = styled.View` height: 40px; justify-content: center; `; const DrawerSectionDivider = styled(Divider)` margin-top: 4px; `; type Props = React.ComponentPropsWithRef & { /** * Title to show as the header for the section. */ title?: string; /** * Content of the `Drawer.Section`. */ children: React.ReactNode; style?: StyleProp; /** * @optional */ theme?: DefaultTheme; }; /** * A component to group content inside a navigation drawer. * *
*
* *
*
* * ## Usage * ```js * import * as React from 'react'; * import { DrawerItem } from 'react-native-simple-elements/components/Drawer'; * * const MyComponent = () => { * const [active, setActive] = React.useState(''); * * * return ( * * setActive('first')} * /> * setActive('second')} * /> * * ); * }; * * export default MyComponent; * ``` */ const DrawerSection = ({ children, title, style, ...rest }: Props) => { const theme = React.useContext(ThemeContext); const { colors, fonts } = theme; const titleColor = color(colors.text).alpha(0.54).rgb().string(); const font = fonts.medium; return ( {title && ( {title} )} {children} ); }; DrawerSection.displayName = "Drawer.Section"; export default DrawerSection;