flutter-plugins
flutter-plugins copied to clipboard
🧱 Flutter plugins used in Mixin Messenger.
Hi, I need to add header parameters (OCI-REQUEST = TRUE). How can I achieve this? Thank you!
like this:  main.dart ```dart void main(List args) async { WidgetsFlutterBinding.ensureInitialized(); if (args.firstOrNull == 'multi_window') { runApp(const MySubWindow()); } else { // WidgetsFlutterBinding.ensureInitialized(); await windowManager.ensureInitialized(); windowManager.waitUntilReadyToShow().then((_) async { await windowManager.setTitle('我的第一个桌面应用');...
Hello, I developed a flutter app for Windows 10 and I am using win_toast for the notification. It seemed to be working fine while I was developing, but after I...
# question I'm having a problem using this plugin with bitsdojo_window 1.The three control buttons are only effective in the first window 2.The three control buttons of the newly opened...
It is useful package that help me run web on macos. Is it possiable implemnt onWebLoadError for some error handling?
I want to listen to the page loaded in the Webiew to parse its content I get content by ``` final content = await webview.evaluateJavaScript( "document.documentElement.outerHTML.toString()"); ``` but it prints...
`WebviewWindow.isWebviewAvailable()` return true when the user not installed WebView2 Runtime yet and when i run ``` final webView = await WebviewWindow.create(); webView.launch(url); ``` it will just show new window with...
can i use this plugin to load url hidden from user? like how flutter_webview_plugin does ?
desktop_webview_window, Macos I can use CreateConfiguration() with a big windowHeight and i obtain a window that fit exactly the screen vertically. But if i give a too big windowWidth the...