Authored by 于良

没有提示文字时prompt不显示 review by 草莓

... ... @@ -99,6 +99,11 @@ export default class Prompt extends Component {
marginBottom: 15,
},
});
if (!this.props.icon) {
if (!this.props.text) {
return null;
}
}
return (
<Animated.View style={[styles.container, {opacity: this.state.fadeAnim,}]}>
... ...