import * as React from 'react'; import { StyleProp, StyleSheet, TextStyle, View, ViewStyle, } from 'react-native'; import { withTheme } from '../../core/theming'; import TouchableRipple from '../TouchableRipple/TouchableRipple'; import Text from '../Typography/Text'; import Checkbox from './Checkbox'; import CheckboxAndroid from './CheckboxAndroid'; import CheckboxIOS from './CheckboxIOS'; type Props = { /** * Status of checkbox. */ status: 'checked' | 'unchecked' | 'indeterminate'; /** * Whether checkbox is disabled. */ disabled?: boolean; /** * Label to be displayed on the item. */ label: string; /** * Function to execute on press. */ onPress?: () => void; /** * Custom color for unchecked checkbox. */ uncheckedColor?: string; /** * Custom color for checkbox. */ color?: string; /** * Additional styles for container View. */ style?: StyleProp; /** * Style that is passed to Label element. */ labelStyle?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; /** * testID to be used on tests. */ testID?: string; /** * Checkbox control position. */ position?: 'leading' | 'trailing'; /** * Whether `` or `` should be used. * Left undefined `` will be used. */ mode?: 'android' | 'ios'; }; /** * Checkbox.Item allows you to press the whole row (item) instead of only the Checkbox. * * ## Usage * ```js * import * as React from 'react'; * import { View } from 'react-native'; * import { Checkbox } from 'react-native-paper'; * * const MyComponent = () => ( * * * * ); * * export default MyComponent; *``` */ const CheckboxItem = ({ style, status, label, onPress, labelStyle, theme, testID, mode, position = 'trailing', disabled, ...props }: Props) => { const checkboxProps = { ...props, status, theme, disabled }; const isLeading = position === 'leading'; let checkbox; if (mode === 'android') { checkbox = ; } else if (mode === 'ios') { checkbox = ; } else { checkbox = ; } return ( {isLeading && checkbox} {label} {!isLeading && checkbox} ); }; CheckboxItem.displayName = 'Checkbox.Item'; export default withTheme(CheckboxItem); // @component-docs ignore-next-line const CheckboxItemWithTheme = withTheme(CheckboxItem); // @component-docs ignore-next-line export { CheckboxItemWithTheme as CheckboxItem }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingVertical: 8, paddingHorizontal: 16, }, label: { fontSize: 16, flexShrink: 1, flexGrow: 1, }, });