feat(http):http webview

This commit is contained in:
2025-12-19 17:36:03 +08:00
parent 1aa3eb38f1
commit 1b3d25ef39
2 changed files with 3 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_easyloading/flutter_easyloading.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
import 'package:get/get.dart';
class CustomerWebView extends StatefulWidget {
final String url;
@@ -127,7 +128,7 @@ class _CustomerWebViewState extends State<CustomerWebView> {
Visibility(
visible: widget.hideBack != true,
child: GestureDetector(
onTap: () => Navigator.pop(context),
onTap: () => Get.back(),
child: Container(
margin: const EdgeInsets.only(left: 16, top: 16),
width: 44,