↧
Answer by satya164 for Why does async work in ComponentDidMount lead to...
Seems like your NetworkRequest.getData(payload) function is doing something expensive synchronously. Because JavaScript is single threaded, the next action doesn't happen until this function returns...
View ArticleAnswer by Vencovsky for Why does async work in ComponentDidMount lead to...
Why does the navigation between screens visually lag when doing async... Maybe it can be laggy because you are on dev mode. Please try it on production. Why does this visual delay disappear entirely...
View ArticleWhy does async work in ComponentDidMount lead to visual lag when navigating...
I have a tabbed react native app and have 2 related questions: Why does the navigation between screens visually lag when doing async work (such sending a network request) in the target view's...
View Article