import React from 'react' import { Platform, Pressable } from 'react-native' import { Switch as PaperSwitch, Text, useTheme } from 'react-native-paper' import { MARGIN } from './constants' function Switch({ value, onChange, title, }: { value?: boolean onChange: (value: boolean) => void title: string }) { const { colors } = useTheme() return ( onChange(!value)} style={{ flexDirection: 'row', flexWrap: 'wrap', alignItems: 'center', marginBottom: Platform.OS === 'ios' ? MARGIN : null, }} > {title} ) } export default React.memo(Switch)