v0.4.3
desktop_window
用于获取和更改窗口大小的 Flutter 桌面插件(macOS/Linux/Windows)。
348喜欢 1.4万近 30 天下载130Pub 分数
macOSWindowsLinux
用于 Flutter 桌面端(macOS/Linux/Windows)更改窗口大小的 Flutter 插件。
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
Flutter plugin for Flutter desktop(macOS/Linux/Windows) to change window size.
import 'package:desktop_window/desktop_window.dart';
Future testWindowFunctions() async {
Size size = await DesktopWindow.getWindowSize();
print(size);
await DesktopWindow.setWindowSize(Size(500,500));
await DesktopWindow.setMinWindowSize(Size(400,400));
await DesktopWindow.setMaxWindowSize(Size(800,800));
await DesktopWindow.resetMaxWindowSize();
await DesktopWindow.toggleFullScreen();
bool isFullScreen = await DesktopWindow.getFullScreen();
await DesktopWindow.setFullScreen(true);
await DesktopWindow.setFullScreen(false);
bool hasBorders = await DesktopWindow.hasBorders;
await DesktopWindow.setBorders(false);
await DesktopWindow.setBorders(true);
await DesktopWindow.toggleBorders();
await DesktopWindow.focus();
}
Linux support has been contributed by Justus Fluegel (https://github.com/JustusFluegel)