UNPKG

react-native-paper

Version:
66 lines 1.99 kB
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } import * as React from 'react'; import { NativeModules, Platform, Switch as NativeSwitch } from 'react-native'; import { getSwitchColor } from './utils'; import { useInternalTheme } from '../../core/theming'; const version = NativeModules.PlatformConstants ? NativeModules.PlatformConstants.reactNativeVersion : undefined; /** * Switch is a visual toggle between two mutually exclusive states — on and off. * * ## Usage * ```js * import * as React from 'react'; * import { Switch } from 'react-native-paper'; * * const MyComponent = () => { * const [isSwitchOn, setIsSwitchOn] = React.useState(false); * * const onToggleSwitch = () => setIsSwitchOn(!isSwitchOn); * * return <Switch value={isSwitchOn} onValueChange={onToggleSwitch} />; * }; * * export default MyComponent; * ``` */ const Switch = ({ value, disabled, onValueChange, color, theme: themeOverrides, ...rest }) => { const theme = useInternalTheme(themeOverrides); const { checkedColor, onTintColor, thumbTintColor } = getSwitchColor({ theme, disabled, value, color }); const props = version && version.major === 0 && version.minor <= 56 ? { onTintColor, thumbTintColor } : Platform.OS === 'web' ? { activeTrackColor: onTintColor, thumbColor: thumbTintColor, activeThumbColor: checkedColor } : { thumbColor: thumbTintColor, trackColor: { true: onTintColor, false: onTintColor } }; return /*#__PURE__*/React.createElement(NativeSwitch, _extends({ value: value, disabled: disabled, onValueChange: disabled ? undefined : onValueChange }, props, rest)); }; export default Switch; //# sourceMappingURL=Switch.js.map