enterLoading method

void enterLoading()

进入加载状态

Implementation

void enterLoading() {
  _enableLoading = false;

  setState(() {
    floating = true;
  });

  readyToLoad().then((_) {
    if (mounted) {
      mode = LoadStatus.loading;
    }
  });
}