我正在使用本机0.63.3
和本机基数2.13.14
。页脚标签按钮onPress不起作用。以前,我通过降级为2.13.8
来解决此问题。但是升级我的本机版本后,它停止工作了。然后,我尝试了2.13.14
。我该怎么解决。
纱用来安装一切。
<Footer style={pagestyles.footerStyle}>
<FooterTab style={{ backgroundColor: GLOBAL.TERTIARY_COLOR }}>
<Button vertical onPress={() => Actions.home()}>
<Icon name="home" style={pagestyles.footerIcon}/>
<Text style={pagestyles.bottomText}>{I18n.t("footer.home")}</Text>
</Button>
<Button vertical onPress={() => alert('working')}>
<Icon name="home" style={pagestyles.footerIcon}/>
<Text style={pagestyles.bottomText}>{I18n.t("footer.home")}</Text>
</Button>
</FooterTab>
</Footer>