异步调用期间的TouchableOpacity块#Performance React-native

问题描述 投票:2回答:1

我有完全可以正常工作的react-native android应用Groww。正在进行性能优化。

我正在使用Redux-saga和axios进行异步网络通话,在网络通话期间,可触摸的不透明性不起作用,一切正常,但是clickable事件没有响应。

我已经通过使用Flatlist,shouldComponentUpdate等优化了我的应用程序。但是由于这个问题,我陷入了困境,将不胜感激。

android performance react-native axios redux-saga
1个回答
0
投票

您可以在android / app / build.gradle中启用Hermes。也许这可以帮助您。

project.ext.react = [
        entryFile   : "index.js",
        enableHermes: true,  // clean and rebuild if changing
]
© www.soinside.com 2019 - 2024. All rights reserved.