使用React-Spring + React-Native在屏幕上不呈现任何内容

时间:2018-11-30 14:24:46

标签: react-native react-spring

我正在尝试使用react-native的react-spring。我似乎无法获得使用react-native(expo)的基本Spring动画。屏幕上没有呈现任何内容,也没有动画。下面是我的代码。感谢任何帮助以指出我出了问题的地方。预先感谢

import React from "react";
import { View } from "react-native";
import { Spring, animated } from "react-spring/dist/native";

const AnimatedView = animated(View);

class Animation2Screen extends React.Component {
  render() {
    return (
      <Spring native from={{ opacity: 0 }} to={{ opacity: 1 }}>
        {styles => <AnimatedView style={styles}>hello</AnimatedView>}
      </Spring>
    );
  }
}

export default Animation2Screen;

0 个答案:

没有答案