Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -45,7 +45,9 @@ class _CustomerWebViewState extends State<CustomerWebView> {
|
|||||||
return Stack(
|
return Stack(
|
||||||
alignment: Alignment.topLeft,
|
alignment: Alignment.topLeft,
|
||||||
children: [
|
children: [
|
||||||
InAppWebView(
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(top: 16,bottom: 16),
|
||||||
|
child: InAppWebView(
|
||||||
key: webViewKey,
|
key: webViewKey,
|
||||||
// webViewEnvironment: webViewEnvironment,
|
// webViewEnvironment: webViewEnvironment,
|
||||||
initialUrlRequest: URLRequest(url: WebUri(widget.url)),
|
initialUrlRequest: URLRequest(url: WebUri(widget.url)),
|
||||||
@@ -124,12 +126,13 @@ class _CustomerWebViewState extends State<CustomerWebView> {
|
|||||||
print(consoleMessage);
|
print(consoleMessage);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
),
|
||||||
Visibility(
|
Visibility(
|
||||||
visible: widget.hideBack != true,
|
visible: widget.hideBack != true,
|
||||||
child: GestureDetector(
|
child: GestureDetector(
|
||||||
onTap: () => Navigator.pop(context),
|
onTap: () => Navigator.pop(context),
|
||||||
child: Container(
|
child: Container(
|
||||||
margin: const EdgeInsets.only(left: 16, top: 24),
|
margin: const EdgeInsets.only(left: 16, top: 28),
|
||||||
width: 44,
|
width: 44,
|
||||||
height: 44,
|
height: 44,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
|
|||||||
Reference in New Issue
Block a user