import {Platform, Pressable} from 'react-native' import {Switch as PaperSwitch, Text, useTheme} from 'react-native-paper' import {MARGIN} from './constants' export default function Switch({ value, onValueChange, onPress, children, }: { value?: boolean onValueChange: (value: boolean) => void onPress: () => void children: string }) { const {colors} = useTheme() return ( {children} ) }