/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/Libraries/Animated/useAnimatedValue.js
23 строки
585 B
Iwo Plaza
Align useAnimatedValue with OSS types (#49643)
28 фев 2025, 17:33
28 фев 2025, 17:33
5fc2484
Код
Авторство
О чём код?
/** * 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 Animated from './Animated'; import {useRef} from 'react'; export default function useAnimatedValue( initialValue: number, config?: ?Animated.AnimatedConfig, ): Animated.Value { const ref = useRef<null | Animated.Value>(null); if (ref.current == null) { ref.current = new Animated.Value(initialValue, config); } return ref.current; }