bitsdojo_window icon indicating copy to clipboard operation
bitsdojo_window copied to clipboard

[feat] support always on top

Open dreamer2q opened this issue 4 years ago • 6 comments

Some windows have a feature of always showing on top.

Can this plugin support this feature? Because sometimes its really useful feature !

dreamer2q avatar Apr 12 '21 15:04 dreamer2q

Absolutely! It's on my list.

bitsdojo avatar Apr 12 '21 15:04 bitsdojo

Thanks, waiting for new release ~

dreamer2q avatar Apr 12 '21 15:04 dreamer2q

waiting~~~

wcb33 avatar Jun 17 '21 06:06 wcb33

waiting

Yonkers avatar Nov 18 '21 02:11 Yonkers

waiting show on top~~~

SteveCruise avatar Dec 15 '21 07:12 SteveCruise

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 { } );

jrbeltre avatar Apr 06 '23 17:04 jrbeltre