import React, { useState, useRef } from 'react';
import { Text, View, StyleSheet, Button, StatusBar } from 'react-native';
import { Transitioning, Transition } from 'react-native-reanimated';
function Sequence() {
const transition = (
);
let [showText, setShowText] = useState(true);
const ref = useRef();
return (
);
}
const styles = StyleSheet.create({
centerAll: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
text: {
fontSize: 16,
margin: 10,
},
});
export default Sequence;