MCPcopy Create free account
hub / github.com/callstack/react-native-paper / RadioButton

Function RadioButton

src/components/RadioButton/RadioButton.tsx:75–84  ·  view source on GitHub ↗
({ theme: themeOverrides, ...props }: Props)

Source from the content-addressed store, hash-verified

73 * ```
74 */
75const RadioButton = ({ theme: themeOverrides, ...props }: Props) => {
76 const theme = useInternalTheme(themeOverrides);
77
78 const Button = Platform.select({
79 default: RadioButtonAndroid,
80 ios: RadioButtonIOS,
81 });
82
83 return <Button {...props} theme={theme} />;
84};
85
86export default RadioButton;

Callers

nothing calls this directly

Calls 1

useInternalThemeFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…