import * as React from 'react'; import { View, StyleSheet, StyleProp, ViewStyle, TextStyle, } from 'react-native'; import { withTheme } from '../../core/theming'; import { RadioButtonContext, RadioButtonContextType } from './RadioButtonGroup'; import { handlePress } from './utils'; import TouchableRipple from '../TouchableRipple/TouchableRipple'; import RadioButton from './RadioButton'; import Text from '../Typography/Text'; 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; }; /** * 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, }: Props) => ( {(context?: RadioButtonContextType) => { return ( handlePress({ onPress: onPress, onValueChange: context?.onValueChange, value, }) } accessibilityLabel={accessibilityLabel} testID={testID} > {label} ); }} ); RadioButtonItem.displayName = 'RadioButton.Item'; export default withTheme(RadioButtonItem); // @component-docs ignore-next-line export { RadioButtonItem }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingVertical: 8, paddingHorizontal: 16, }, label: { fontSize: 16, }, });