flutter Unhandled Exception: setState() called after dispose(): _HomeLoadingPageState#48fbd(lifecycle state: defunct, not mounted) code example
Example: lifecycle state: defunct, not mounted
void setStateIfMounted(f) {
if (mounted) setState(f);
}