We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I use official force to open the Element plus website, the dropdown selection box does not work and I cannot choose
The dropdown menu of Element plus allows for normal selection
import 'dart:async'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_inappwebview/flutter_inappwebview.dart'; WebViewEnvironment? webViewEnvironment; Future main() async { WidgetsFlutterBinding.ensureInitialized(); if (!kIsWeb && defaultTargetPlatform == TargetPlatform.windows) { final availableVersion = await WebViewEnvironment.getAvailableVersion(); assert(availableVersion != null, 'Failed to find an installed WebView2 Runtime or non-stable Microsoft Edge installation.'); webViewEnvironment = await WebViewEnvironment.create(); } if (!kIsWeb && defaultTargetPlatform == TargetPlatform.android) { await InAppWebViewController.setWebContentsDebuggingEnabled(kDebugMode); } runApp(const MaterialApp(home: MyApp())); } class MyApp extends StatefulWidget { const MyApp({super.key}); @override State<MyApp> createState() => _MyAppState(); } class _MyAppState extends State<MyApp> { final GlobalKey webViewKey = GlobalKey(); InAppWebViewController? webViewController; InAppWebViewSettings settings = InAppWebViewSettings( isInspectable: kDebugMode,); double progress = 0; @override void initState() { super.initState(); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text("Official InAppWebView website")), body: SafeArea( child: Column(children: <Widget>[ Expanded( child: Stack( children: [ InAppWebView( key: webViewKey, webViewEnvironment: webViewEnvironment, initialSettings: settings, onWebViewCreated: (controller) async { webViewController = controller; await controller.loadUrl( urlRequest: URLRequest(url: WebUri('https://element-plus.org/en-US/component/select.html'))); }, onProgressChanged: (controller, progress) { setState(() { this.progress = progress / 100; }); }, ), progress < 1.0 ? LinearProgressIndicator(value: progress) : Container(), ], ), ), ]))); } }
no
v3.24.3
Windows
v6.1.5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Current Behavior
When I use official force to open the Element plus website, the dropdown selection box does not work and I cannot choose
Expected Behavior
The dropdown menu of Element plus allows for normal selection
Steps with code example to reproduce
Steps with code example to reproduce
Stacktrace/Logs
Stacktrace/Logs
Flutter version
v3.24.3
Operating System, Device-specific and/or Tool
Windows
Plugin version
v6.1.5
Additional information
mp4
2024-10-12.140225.mp4
Self grab
The text was updated successfully, but these errors were encountered: