https://github.com/rodydavis/flutter_multi_window
Multi Window Plugin for Flutter
https://github.com/rodydavis/flutter_multi_window
flutter multiwindow window-manager
Last synced: 10 months ago
JSON representation
Multi Window Plugin for Flutter
- Host: GitHub
- URL: https://github.com/rodydavis/flutter_multi_window
- Owner: rodydavis
- License: mit
- Created: 2020-03-10T06:50:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-27T18:13:00.000Z (over 4 years ago)
- Last Synced: 2025-04-22T19:12:12.533Z (10 months ago)
- Topics: flutter, multiwindow, window-manager
- Language: Dart
- Homepage: https://rodydavis.github.io/flutter_multi_window/
- Size: 1.03 MB
- Stars: 19
- Watchers: 1
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.buymeacoffee.com/rodydavis)
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WSH3GVC49GNNJ)
[](https://pub.dartlang.org/packages/flutter_multi_window)
# 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
```dart
final window = NewWindow(
url: 'https://flutter.dev',
width: 400,
height: 400,
);
if (kIsWeb) {
window.create(); // Show the window
}
```