adding packages
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
[](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
|
||||
}
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user