mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
4c1477073f
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51407 Prefers using this as a destructured import instead of as a member expression of `React`. Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D74894324 fbshipit-source-id: 7179f27f8ff1fb1b67745650b38d87cb2ea982b2
105 lines
2.6 KiB
JavaScript
105 lines
2.6 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 type {RNTesterModuleExample} from '../../types/RNTesterTypes';
|
|
|
|
import RNTConfigurationBlock from '../../components/RNTConfigurationBlock';
|
|
import RNTesterButton from '../../components/RNTesterButton';
|
|
import ToggleNativeDriver from './utils/ToggleNativeDriver';
|
|
import * as React from 'react';
|
|
import {useEffect, useMemo, useState} from 'react';
|
|
import {Animated, StyleSheet, Text, View} from 'react-native';
|
|
|
|
export default ({
|
|
title: 'Looping Example',
|
|
name: 'loopingView',
|
|
description: 'Native looping animation that shrinks and fades out a view.',
|
|
render: () => <LoopingExample />,
|
|
}: RNTesterModuleExample);
|
|
|
|
function LoopingView({
|
|
useNativeDriver,
|
|
running,
|
|
}: {
|
|
useNativeDriver: boolean,
|
|
running: boolean,
|
|
}) {
|
|
const opacity = useMemo(() => new Animated.Value(1), []);
|
|
const scale = useMemo(() => new Animated.Value(1), []);
|
|
|
|
useEffect(() => {
|
|
if (!running) {
|
|
return;
|
|
}
|
|
|
|
const options = {
|
|
duration: 1000,
|
|
toValue: 0,
|
|
useNativeDriver,
|
|
};
|
|
const animation = Animated.loop(
|
|
Animated.parallel([
|
|
Animated.timing(opacity, options),
|
|
Animated.timing(scale, options),
|
|
]),
|
|
);
|
|
animation.start();
|
|
|
|
return () => {
|
|
animation.reset();
|
|
};
|
|
}, [opacity, scale, running, useNativeDriver]);
|
|
|
|
return (
|
|
<Animated.View style={[styles.view, {opacity, transform: [{scale}]}]}>
|
|
<Text>Looping!</Text>
|
|
</Animated.View>
|
|
);
|
|
}
|
|
|
|
function LoopingExample(props: {}): React.Node {
|
|
const [running, setRunning] = useState(false);
|
|
const [useNativeDriver, setUseNativeDriver] = useState(false);
|
|
|
|
return (
|
|
<View>
|
|
<RNTConfigurationBlock>
|
|
<ToggleNativeDriver
|
|
value={useNativeDriver}
|
|
onValueChange={value => {
|
|
setRunning(false);
|
|
setUseNativeDriver(value);
|
|
}}
|
|
/>
|
|
</RNTConfigurationBlock>
|
|
<RNTesterButton onPress={() => setRunning(!running)}>
|
|
Press to {running ? 'Reset' : 'Start'}
|
|
</RNTesterButton>
|
|
<LoopingView
|
|
key={`looping-view-${useNativeDriver ? 'native' : 'js'}-driver`}
|
|
useNativeDriver={useNativeDriver}
|
|
running={running}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
view: {
|
|
backgroundColor: 'deepskyblue',
|
|
borderWidth: 1,
|
|
borderColor: 'dodgerblue',
|
|
borderRadius: 10,
|
|
padding: 20,
|
|
alignItems: 'center',
|
|
margin: 20,
|
|
},
|
|
});
|