Open oblank opened 4 years ago
I'm seeing some low frames when navigation and store.dispatch happen at the same time too. Did you fix this?
Have you guys tried the following:
.onAppear {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
store.dispatch(action: TasksActions.FetchMine())
}
}
when
AView.sheet(BView)
with navigation。B view is a list, with codes:
1, touch BView's list item , navigation into CView (just a detail view) 2, now, swipe back a little with gesture(C->B), and then cancel swipe,will recreate this issues
when comment
store.dispatch...
,it work well