as in my question if i have different setState() calls does their order will be respected while executing them ? i know setState() is asynchronous , so if setState() number [1] for example which is heavy (got updated from a heavy code calculations) does it will execute and gave the result before or after a light setState() number [2] (got updated from a light code) ? i meant does setState() [2] will wait until setstate() [1] is finished ?
setState({imgfile:imgf});//[1]
setState({title:tit});//[2]