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 RadioButton from './RadioButton'; import RadioButtonAndroid from './RadioButtonAndroid'; import { RadioButtonContext, RadioButtonContextType } from './RadioButtonGroup'; import RadioButtonIOS from './RadioButtonIOS'; import { handlePress } from './utils'; export type Props = { /** * Value of the radio button. */ value: string; /** * Label to be displayed on the item. */ label: string; /** * Whether radio is disabled. */ disabled?: boolean; /** * Function to execute on press. */ onPress?: () => void; /** * Accessibility label for the touchable. This is read by the screen reader when the user taps the touchable. */ accessibilityLabel?: string; /** * Custom color for unchecked radio. */ uncheckedColor?: string; /** * Custom color for radio. */ color?: string; /** * Status of radio button. */ status?: 'checked' | 'unchecked'; /** * 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; /** * Whether `` or `` should be used. * Left undefined `` will be used. */ mode?: 'android' | 'ios'; /** * Radio button control position. */ position?: 'leading' | 'trailing'; }; /** * RadioButton.Item allows you to press the whole row (item) instead of only the RadioButton. * *
*
* *
Pressed
*
*
* * ## Usage * ```js * import * as React from 'react'; * import { RadioButton } from 'react-native-paper'; * * const MyComponent = () => { * const [value, setValue] = React.useState('first'); * * return ( * setValue(value)} value={value}> * * * * ); * }; * * export default MyComponent; *``` */ const RadioButtonItem = ({ value, label, style, labelStyle, onPress, disabled, color, uncheckedColor, status, theme: { colors }, accessibilityLabel, testID, mode, position = 'trailing', }: Props) => { const radioButtonProps = { value, disabled, status, color, uncheckedColor }; const isLeading = position === 'leading'; let radioButton: any; if (mode === 'android') { radioButton = ; } else if (mode === 'ios') { radioButton = ; } else { radioButton = ; } return ( {(context?: RadioButtonContextType) => { return ( handlePress({ onPress: onPress, onValueChange: context?.onValueChange, value, }) } accessibilityLabel={accessibilityLabel} testID={testID} > {isLeading && radioButton} {label} {!isLeading && radioButton} ); }} ); }; RadioButtonItem.displayName = 'RadioButton.Item'; export default withTheme(RadioButtonItem); // @component-docs ignore-next-line const RadioButtonItemWithTheme = withTheme(RadioButtonItem); // @component-docs ignore-next-line export { RadioButtonItemWithTheme as RadioButtonItem }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingVertical: 8, paddingHorizontal: 16, }, label: { fontSize: 16, flexShrink: 1, flexGrow: 1, }, });