So in my app, I want to make an Ajax request as soon as the widget is mounted, not in initState()
. Similar to ComponentWillMount()
in react
if the Widget has not mounted then return. Do it before the setState method
if (!mounted) return;
setState(() {});
or
if (mounted) {
//Do something
};
setState(() {});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With