/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ import {RNTesterThemeContext} from '../../../components/RNTesterTheme'; import * as React from 'react'; import {useContext} from 'react'; import {StyleSheet, Switch, Text, View} from 'react-native'; type ViewStyleProp = React.ElementConfig['style']; type Props = { value: boolean, onValueChange: React.ElementConfig['onValueChange'], style?: ?ViewStyleProp, }; export default function ToggleNativeDriver({ value, onValueChange, style, }: Props): React.Node { const theme = useContext(RNTesterThemeContext); return ( Use Native Driver ); } const styles = StyleSheet.create({ row: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', }, });