1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Add desktop window setup to form_app (#1039)

This commit is contained in:
Miguel Beltran
2022-03-04 00:04:20 +01:00
committed by GitHub
parent 3eeac8e7de
commit 6d7ff34d62
30 changed files with 1413 additions and 0 deletions

View File

@@ -2,7 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:io';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:window_size/window_size.dart';
import 'src/autofill.dart';
import 'src/form_widgets.dart';
@@ -11,9 +15,29 @@ import 'src/sign_in_http.dart';
import 'src/validation.dart';
void main() {
setupWindow();
runApp(const FormApp());
}
const double kWindowWidth = 480;
const double kWindowHeight = 854;
void setupWindow() {
if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) {
WidgetsFlutterBinding.ensureInitialized();
setWindowTitle('Form Samples');
setWindowMinSize(const Size(kWindowWidth, kWindowHeight));
setWindowMaxSize(const Size(kWindowWidth, kWindowHeight));
getCurrentScreen().then((screen) {
setWindowFrame(Rect.fromCenter(
center: screen!.frame.center,
width: kWindowWidth,
height: kWindowHeight,
));
});
}
}
final demos = [
Demo(
name: 'Sign in with HTTP',