mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2f77e0d7fd
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51412 Prefers using this as a destructured import instead of as a member expression of `React`. Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D74895839 fbshipit-source-id: 9ab9fc8bdee6d1764ad86fa2165da32cb266174e
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
/**
|
|
* 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<typeof View>['style'];
|
|
|
|
type Props = {
|
|
value: boolean,
|
|
onValueChange: React.ElementConfig<typeof Switch>['onValueChange'],
|
|
style?: ?ViewStyleProp,
|
|
};
|
|
|
|
export default function ToggleNativeDriver({
|
|
value,
|
|
onValueChange,
|
|
style,
|
|
}: Props): React.Node {
|
|
const theme = useContext(RNTesterThemeContext);
|
|
return (
|
|
<View style={StyleSheet.compose(styles.row, style)}>
|
|
<Text style={{color: theme.SecondaryLabelColor}}>Use Native Driver</Text>
|
|
<Switch
|
|
testID="toggle-use-native-driver"
|
|
onValueChange={onValueChange}
|
|
value={value}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
row: {
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
alignItems: 'center',
|
|
},
|
|
});
|