/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/js/components/RNTesterSettingSwitchRow.js
44 строки
928 B
Tim Yung
RN: Sort Pragmas in Headers (#51554)
23 май 2025, 07:18
23 май 2025, 07:18
1977dd6
Код
Авторство
О чём код?
/** * 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 RNTesterText from './RNTesterText'; import * as React from 'react'; import {StyleSheet, Switch, View} from 'react-native'; type Props = { label: string, onEnable: () => void, onDisable: () => void, active: boolean, }; const styles = StyleSheet.create({ row: { padding: 10, flexDirection: 'row', justifyContent: 'space-between', }, }); const RNTesterSettingSwitchRow = ({ label, onEnable, onDisable, active, }: Props): React.Node => { return ( <View style={styles.row}> <RNTesterText>{label}</RNTesterText> <Switch value={active} onValueChange={active ? onDisable : onEnable} /> </View> ); }; export default RNTesterSettingSwitchRow;