show static method
Implementation
static show(String url, {String? content}) {
_dict.add(url);
if (_loadStatue || _dict.length >= 2) {
return;
}
_loadStatue = true;
showDialogCustom(
context: FConfig.ins.context!,
barrierDismissible: false,
builder: (_) => WillPopScope(
onWillPop: () async => false,
child: DialogView.load(content: "加载中"),
),
);
}