2021-09-26 20:47:01 +08:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
|
2021-09-28 18:35:35 +08:00
|
|
|
/// [UOS设计指南](https://docs.uniontech.com/zh/content/t_dbG3kBK9iDf9B963ok)
|
2021-09-26 20:47:01 +08:00
|
|
|
|
2021-09-28 18:35:35 +08:00
|
|
|
const double localManagerPanelWidth = 260;
|
|
|
|
|
|
|
|
|
|
const double marketPanelWidth = 300;
|
2021-09-26 20:47:01 +08:00
|
|
|
|
|
|
|
|
const shortDuration = const Duration(milliseconds: 100);
|
|
|
|
|
|
|
|
|
|
const mediumDuration = const Duration(milliseconds: 300);
|
|
|
|
|
|
|
|
|
|
const longDuration = const Duration(milliseconds: 500);
|
|
|
|
|
|
|
|
|
|
const minWindowSize = const Size(800, 600);
|
|
|
|
|
|
2021-09-28 18:35:35 +08:00
|
|
|
const double defaultBorderRadius = 8;
|
|
|
|
|
|
|
|
|
|
const double defaultButtonHeight = 36;
|
|
|
|
|
|
2021-09-26 20:47:01 +08:00
|
|
|
enum PanelType {
|
|
|
|
|
local_manager,
|
|
|
|
|
market,
|
2021-09-28 18:35:35 +08:00
|
|
|
}
|