@override小部件构建(BuildContext上下文){ return框架(
appBar: AppBar(
title: const Text('title'),
),
body: SafeArea(
child: WillPopScope(
onWillPop: () async {
if (await _webViewController.canGoBack()) {
await _webViewController.goBack();
return false;
}
return true;
},
child: WebView(
initialUrl: 'http://www.google.com',
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (controller) {
_webViewController = controller;
},
),
),
),
);
}
我怎样才能把下面的Spinners代码放到上面的代码中?
中心(子级:微调工具包圆圈(大小:140,颜色:颜色:白色、)、)、
我不知道怎么把代码放进身体里
1条答案
按热度按时间0h4hbjxa1#
您将找到答案here。
只需将圆形进度指示器替换为中心(子级:SpinKitCircle(大小:140,颜色:颜色:白色、)、)