showHorizontalLoadingText static method

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

水平加载中toast

Implementation

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