Tweaked default desktop window size

This commit is contained in:
JHubi1 2024-06-02 17:11:35 +02:00
parent 8b8295805f
commit 279f35f89b
No known key found for this signature in database
GPG Key ID: 7BF82570CBBBD050
1 changed files with 2 additions and 3 deletions

View File

@ -68,9 +68,8 @@ void main() {
if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) { if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) {
doWhenWindowReady(() { doWhenWindowReady(() {
const initialSize = Size(600, 450); appWindow.minSize = const Size(600, 450);
appWindow.minSize = initialSize; appWindow.size = const Size(1200, 650);
appWindow.size = initialSize;
appWindow.alignment = Alignment.center; appWindow.alignment = Alignment.center;
appWindow.show(); appWindow.show();
}); });