#Flutter tip: avoid calling setState() in a long build method or all the child widgets in it will rebuild!The best solution would be to destructure your build method into multiple small widgets. But if you can’t do that for some case, use the #ValueNotifier widget
#FlutterTip