我一直在使用expo开发一些很酷的程序,我正在尝试构建一个Twitter的克隆。在构建Twitter应用程序的加载动画时遇到了一个小问题。 我正在使用IonIcons的“ twitter-logo”来构建它,问题是Icon不会像原始应用程序那样居中放置,而是会奇怪地动画。
要对其进行测试,只需将下面的代码粘贴到您的App.js中,您就会看到动画。
如果您没有Expo,只需将导入更改为react-native-vecto-icons。
import React from "react";
import { Animated, Easing, Text, View } from "react-native";
import Icon from "@expo/vector-icons/Ionicons";
AnimatedIcon = Animated.createAnimatedComponent(Icon);
export default class RootComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoading: true,
isAnimating: false,
iconSize: new Animated.Value(60)
};
}
startAnimation = () => {
Animated.timing(this.state.iconSize, {
toValue: 1500,
duration: 1000,
easing: Easing.back(0.8)
}).start(() => this.setState({ isAnimating: false }));
};
componentDidMount() {
let x = setTimeout(() => {
let isLoading = !this.state.isLoading;
let isAnimating = !this.state.isAnimating;
this.setState({ isLoading, isAnimating });
this.startAnimation();
clearTimeout(x);
}, 2000);
}
render() {
if (this.state.isLoading || this.state.isAnimating)
return (
<Animated.View
style={{
flex: 1,
alignItems: "center",
justifyContent: "center",
backgroundColor: "#1b95e0"
}}
>
<AnimatedIcon
name={"logo-twitter"}
style={{
alignSelf: "center",
fontSize: this.state.iconSize
}}
color={"#fff"}
/>
</Animated.View>
);
return (
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<Text>TWITTER APP :)</Text>
</View>
);
}
}
答案 0 :(得分:0)
只需将Animated Icon样式中的alignSelf属性更改为textAlign。这将使Icon出现在屏幕中央。下面是更新的代码。
import React from 'react';
import { Animated, Easing, Text, View } from 'react-native';
import { Ionicons as Icon } from '@expo/vector-icons';
const AnimatedIcon = Animated.createAnimatedComponent(Icon);
export default class RootComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoading: true,
isAnimating: false,
iconSize: new Animated.Value(60),
};
}
startAnimation = () => {
Animated.timing(this.state.iconSize, {
toValue: 1500,
duration: 1000,
easing: Easing.back(0.8),
}).start(() => this.setState({ isAnimating: false }));
};
componentDidMount() {
let x = setTimeout(() => {
let isLoading = !this.state.isLoading;
let isAnimating = !this.state.isAnimating;
this.setState({ isLoading, isAnimating });
this.startAnimation();
clearTimeout(x);
}, 2000);
}
render() {
if (this.state.isLoading || this.state.isAnimating)
return (
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#1b95e0',
}}>
<AnimatedIcon
name={'logo-twitter'}
style={{
textAlign: 'center',
fontSize: this.state.iconSize,
}}
color={'#fff'}
/>
</View>
);
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>TWITTER APP :)</Text>
</View>
);
}
}