running formatter

This commit is contained in:
2026-01-15 17:34:56 -08:00
parent a962b1f3cf
commit 6634ebaf81
1180 changed files with 16714 additions and 16640 deletions
@@ -1,3 +1,3 @@
library flutter_multi_window;
export 'src/window.dart';
export 'src/window.dart';
@@ -1,2 +1 @@
export 'unsupported.dart'
if (dart.library.html) 'web.dart';
export 'unsupported.dart' if (dart.library.html) 'web.dart';
+2 -2
View File
@@ -84,8 +84,8 @@ class _MyAppState extends State<MyApp> {
final height = size.height;
final width = size.width;
final sb = StringBuffer();
final top =
offset?.dy ?? (screen.height != null ? (screen.height - height) / 2 : 0);
final top = offset?.dy ??
(screen.height != null ? (screen.height - height) / 2 : 0);
final left =
offset?.dx ?? (screen.width != null ? (screen.width - width) / 2 : 0);
sb.write("height=");