import { Platform } from '@unimodules/core'; import * as React from 'react'; import { Switch } from 'react-native'; import { Page, Section } from '../components/Page'; import Colors from '../constants/Colors'; export default function SwitchScreen() { const [value, setValue] = React.useState(true); return (
{Platform.OS === 'web' && (
)}
); } SwitchScreen.navigationOptions = { title: 'Switch', };