如何获得ref
从按钮由纸为复活?
我的代码:
import { Button } from 'react-native-paper';
import Animated from 'react-native-reanimated';
...
const MyView = React.forwardRef((props, ref) => {
return <Button ref={ref} {...props} />;
});
const MyAnimatedView = Animated.createAnimatedComponent(MyView);
我得到一个错误:Warning: Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?
1条答案
按热度按时间nbysray51#
编辑:这不是解决问题的直接方法,但我没有找到其他方法。
好吧,我不得不从头开始写我自己的组件。
大概是这样的: