/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/rn-tester/js/examples/Animated/ContinuousInteractionsExample.js
36 строк
1 KB
Tim Yung
RN: Prefer Destructured Import for `useContext` (#51412)
17 май 2025, 02:33
17 май 2025, 02:33
2f77e0d
Код
Авторство
О чём код?
/** * 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 type {RNTesterModuleExample} from '../../types/RNTesterTypes'; import {RNTesterThemeContext} from '../../components/RNTesterTheme'; import * as React from 'react'; import {useContext} from 'react'; import {Text} from 'react-native'; function AnimatedContinuousInteractionsExample(): React.Node { const theme = useContext(RNTesterThemeContext); return ( <Text style={{color: theme.SecondaryLabelColor}}> Checkout the Gratuitous Animation App! </Text> ); } export default ({ title: 'Continuous Interactions', name: 'continuousInteractions', description: ('Gesture events, chaining, 2D ' + 'values, interrupting and transitioning ' + 'animations, etc.': string), render() { return <AnimatedContinuousInteractionsExample />; }, }: RNTesterModuleExample);