feat: responsive layout.

This commit is contained in:
2021-09-26 20:47:01 +08:00
parent d0bd2af9b5
commit fdba64e748
8 changed files with 197 additions and 26 deletions
+18
View File
@@ -0,0 +1,18 @@
import 'package:flutter/cupertino.dart';
const double localManagerPanelWidth = 200;
const double marketPanelWidth = 200;
const shortDuration = const Duration(milliseconds: 100);
const mediumDuration = const Duration(milliseconds: 300);
const longDuration = const Duration(milliseconds: 500);
const minWindowSize = const Size(800, 600);
enum PanelType {
local_manager,
market,
}