You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
|
|
|
/// [UOS设计指南](https://docs.uniontech.com/zh/content/t_dbG3kBK9iDf9B963ok)
|
|
|
|
|
|
|
|
const double localManagerPanelWidth = 260;
|
|
|
|
|
|
|
|
const double marketPanelWidth = 300;
|
|
|
|
|
|
|
|
const shortDuration = const Duration(milliseconds: 100);
|
|
|
|
|
|
|
|
const mediumDuration = const Duration(milliseconds: 300);
|
|
|
|
|
|
|
|
const longDuration = const Duration(milliseconds: 500);
|
|
|
|
|
|
|
|
const minWindowSize = const Size(800, 600);
|
|
|
|
|
|
|
|
const defaultWindowSize = const Size(1120, 720);
|
|
|
|
|
|
|
|
const double defaultBorderRadius = 8;
|
|
|
|
|
|
|
|
const double defaultButtonHeight = 36;
|
|
|
|
|
|
|
|
enum PanelType {
|
|
|
|
local_manager,
|
|
|
|
market,
|
|
|
|
}
|