Open ilgnefz opened 2 years ago
Also need to modify the following readme
import 'package:desktop_webview_window/desktop_webview_window.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
// Add this your main method.
// used to show a webview title bar.
if (runWebViewTitleBarWidget(args)) {
return;
}
runApp(MyApp());
}
To the following
import 'package:desktop_webview_window/desktop_webview_window.dart';
void main() async {
// Add this your main method.
// used to show a webview title bar.
if (runWebViewTitleBarWidget(args)) {
return;
}
WidgetsFlutterBinding.ensureInitialized();
runApp(MyApp());
}
marker
If you click the minimize button in the upper right corner of the Web window, you will most likely get an overflow error