mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
297ae37367
Summary: Fix rn-tester Animated example label color in dark mode ## Changelog: [INTERNAL] [FIXED] - Fix rn-tester Animated example label color in dark mode Pull Request resolved: https://github.com/facebook/react-native/pull/44127 Test Plan: Animated examples render incorrectly in dark mode. So let's fix them. :)  Reviewed By: fabriziocucci Differential Revision: D56234954 Pulled By: javache fbshipit-source-id: 5fd8604077ced9aa3acd23a7dc9ebd8476a7330b
51 lines
1.2 KiB
JavaScript
51 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 {StyleSheet, Switch, Text, View} from 'react-native';
|
|
|
|
type ViewStyleProp = $ElementType<React.ElementConfig<typeof View>, 'style'>;
|
|
|
|
type Props = {
|
|
value: boolean,
|
|
onValueChange: $ElementType<
|
|
React.ElementConfig<typeof Switch>,
|
|
'onValueChange',
|
|
>,
|
|
style?: ?ViewStyleProp,
|
|
};
|
|
|
|
export default function ToggleNativeDriver({
|
|
value,
|
|
onValueChange,
|
|
style,
|
|
}: Props): React.Node {
|
|
const theme = React.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',
|
|
},
|
|
});
|