RadioButton
Radio buttons allow the selection a single option from a set.
Usage
import * as React from 'react';
import { View } from 'react-native';
import { RadioButton } from 'react-native-paper';
export default class MyComponent extends React.Component {
state = {
checked: 'first',
};
render() {
const { checked } = this.state;
return (
<View>
<RadioButton
value="first"
status={checked === 'first' ? 'checked' : 'unchecked'}
onPress={() => { this.setState({ checked: 'first' }); }}
/>
<RadioButton
value="second"
status={checked === 'second' ? 'checked' : 'unchecked'}
onPress={() => { this.setState({ checked: 'second' }); }}
/>
</View>
);
}
}
Props
theme
Type:
Theme
Static properties
These properties can be accessed on RadioButton
by using the dot notation, e.g. RadioButton.Group
.