feat: add dde_button widget.

This commit is contained in:
2021-09-28 18:35:35 +08:00
parent 92a2e4c365
commit bba3b5d3d1
14 changed files with 243 additions and 89 deletions
+9 -3
View File
@@ -1,8 +1,10 @@
import 'package:flutter/cupertino.dart';
const double localManagerPanelWidth = 200;
/// [UOS设计指南](https://docs.uniontech.com/zh/content/t_dbG3kBK9iDf9B963ok)
const double marketPanelWidth = 200;
const double localManagerPanelWidth = 260;
const double marketPanelWidth = 300;
const shortDuration = const Duration(milliseconds: 100);
@@ -12,7 +14,11 @@ const longDuration = const Duration(milliseconds: 500);
const minWindowSize = const Size(800, 600);
const double defaultBorderRadius = 8;
const double defaultButtonHeight = 36;
enum PanelType {
local_manager,
market,
}
}