web
This commit is contained in:
@@ -33,22 +33,18 @@ class _WebViewScreenState extends State<WebViewScreen> {
|
||||
)
|
||||
..loadRequest(Uri.parse(widget.link));
|
||||
return Scaffold(
|
||||
appBar: PopAppbar(
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
label: widget.label,
|
||||
),
|
||||
body: Stack(
|
||||
children: [
|
||||
const Center(child: CircularProgressIndicator()),
|
||||
WebViewWidget(controller: controller),
|
||||
],
|
||||
)
|
||||
|
||||
// isLoading
|
||||
// ? const Center(child: CircularProgressIndicator())
|
||||
// : WebViewWidget(controller: controller),
|
||||
);
|
||||
appBar: PopAppbar(
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
label: widget.label,
|
||||
),
|
||||
body: Stack(
|
||||
children: [
|
||||
const Center(child: CircularProgressIndicator()),
|
||||
WebViewWidget(controller: controller),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user