/**
* 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, useState} from 'react';
import {Animated, StyleSheet, Text, View} from 'react-native';
const styles = StyleSheet.create({
content: {
backgroundColor: 'deepskyblue',
borderWidth: 1,
borderColor: 'dodgerblue',
padding: 20,
margin: 20,
borderRadius: 10,
alignItems: 'center',
},
});
function FadeInView({
useNativeDriver,
children,
}: {
useNativeDriver: boolean,
children: React.Node,
}) {
//opacity 0
const [fadeAnim] = useState(() => new Animated.Value(0));
useEffect(() => {
Animated.timing(
// Uses easing functions
fadeAnim, // The value to drive
{
// Target
toValue: 1,
// Configuration
duration: 2000,
useNativeDriver,
},
).start(); // Don't forget start!
}, [fadeAnim, useNativeDriver]);
return (
{children}
);
}
function FadeInExample(): React.Node {
const [show, setShow] = useState(true);
const [useNativeDriver, setUseNativeDriver] = useState(false);
return (
setShow(!show)}>
Press to {show ? 'Hide' : 'Show'}
{show && (
FadeInView
)}
);
}
export default ({
title: 'FadeInView',
name: 'fadeInView',
description: ('Uses a simple timing animation to ' +
'bring opacity from 0 to 1 when the component ' +
'mounts.': string),
expect:
'FadeInView box should animate from opacity 0 to 1. \nExpect no animation when hiding.\nHiding the view mid-animation should not affect next animation.',
render: (): React.Node => ,
}: RNTesterModuleExample);