bitsdojo_window
bitsdojo_window copied to clipboard
[feat] support always on top
Some windows have a feature of always showing on top.
Can this plugin support this feature? Because sometimes its really useful feature !
Absolutely! It's on my list.
Thanks, waiting for new release ~
waiting~~~
waiting
waiting show on top~~~
Hello guys, you can import "window_manager.dart" And you can use the options from this library with the bits_dojo App.: Do:
import 'package:window_manager/window_manager.dart';
Inside DoWhenWindowsReady() you add those lines at the end before win.show():
windowManager.ensureInitialized();
WindowOptions windowOptions = const WindowOptions(alwaysOnTop: true);
windowManager.waitUntilReadyToShow(windowOptions, () async { } );