Files
..
2026-01-15 14:38:46 -08:00
2026-01-15 17:36:22 -08:00
2026-01-15 14:38:46 -08:00
2026-01-15 14:38:46 -08:00
2026-01-15 14:38:46 -08:00
2026-01-15 14:38:46 -08:00
2026-01-15 17:41:04 -08:00
2026-01-15 17:36:22 -08:00
2026-01-15 14:38:46 -08:00
2026-01-15 14:38:46 -08:00

Buy Me A Coffee Donate Pub

flutter_multi_window

A Flutter package to create new windows on supported platforms.

Online Demo: https://rodydavis.github.io/flutter_multi_window/

Only supports web at the moment!

Getting Started

final window = NewWindow(
  url: 'https://flutter.dev',
  width: 400,
  height: 400,
);
if (kIsWeb) {
  window.create(); // Show the window
}