window_manager
window_manager copied to clipboard
This plugin allows Flutter desktop apps to resizing and repositioning the window.
Added some tests also
Haven't executed, but theoretically the test on macos should work again. See eE.g. https://github.com/bluefireteam/audioplayers/blob/f2269aeb270154e5f3571e1e025d340cfbca4686/.github/workflows/test.yml#L358
` WidgetsFlutterBinding.ensureInitialized(); static const Size windowSize = Size(1280, 700); bool isCenter = true; WindowOptions windowOptions = WindowOptions( size: windowSize, center: isCenter, backgroundColor: Colors.transparent, skipTaskbar: false, titleBarStyle: TitleBarStyle.hidden, ); // 应用窗口设置 ...