You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i have a StatelessWidget with FutureBuilder.
when i leave the current page to the next by calling Navigator.of(context).push(..) the FutureBuilder is being called again, even if i continue to call Navigator.of(context).push(..) to the next page the FutureBuilder is fired again!
i used some printing in my StatlessWidget to discover that the Widget build method is not being called its only the FutureBuilder.builder function
i tried following the suggestion here #11426
but without success...