feat: Center window on startup for improved user experience

This commit is contained in:
2026-05-21 08:15:06 +02:00
parent f1aca3c812
commit c0372b3587
+1 -1
View File
@@ -15,7 +15,7 @@ Future<void> bootstrapWindow() async {
final WindowOptions windowOptions = WindowOptions( final WindowOptions windowOptions = WindowOptions(
size: initialSize, size: initialSize,
minimumSize: Size(400, 600), minimumSize: Size(400, 600),
center: false, center: true,
titleBarStyle: TitleBarStyle.normal, titleBarStyle: TitleBarStyle.normal,
); );