showLoadingText static method

_HideCallback showLoadingText(
  1. BuildContext context, {
  2. String msg = "加载中...",
})

加载中toast

Implementation

static _HideCallback showLoadingText(
  BuildContext context, {
  String msg = "加载中...",
}) {
  return _showJhToast(
      context: context, msg: msg, isLoading: true, stopEvent: true, orientation: _Orientation.vertical);
}