no change

This commit is contained in:
Developer
2026-05-23 05:42:07 +08:00
parent a9499d7219
commit f5a75cb6d3
4 changed files with 16 additions and 13 deletions

View File

@@ -4,6 +4,9 @@
***
## [v14.99.0] - 2026-05-22
### 新增 — 主题令牌审计工具增强

View File

@@ -489,10 +489,10 @@ class ProEditorPageState extends State<ProEditorPage>
child: Material(
color: p.bgPrimary,
child: SizedBox.expand(
child: Padding(
padding: const EdgeInsets.all(8),
child: RepaintBoundary(
key: _repaintKey,
child: RepaintBoundary(
key: _repaintKey,
child: Padding(
padding: const EdgeInsets.all(8),
child: CanvasStyleMiddleware(
style: _canvasStyle,
child: ColoredBox(

View File

@@ -122,8 +122,8 @@ class ProEditorBridge {
),
mainEditor: pro.MainEditorConfigs(
enableZoom: true,
editorMinScale: 0.5,
doubleTapZoomFactor: 2.5,
editorMinScale: 0.3,
doubleTapZoomFactor: 1.8,
boundaryMargin: const EdgeInsets.all(double.infinity),
safeArea: const pro.EditorSafeArea.none(),
widgets: pro.MainEditorWidgets(

View File

@@ -317,19 +317,19 @@ class _CanvasStyleSheetState extends State<CanvasStyleSheet> {
children: [
const SizedBox(height: AppSpacing.sm),
_buildPresetSection(ext),
const SizedBox(height: AppSpacing.md),
const SizedBox(height: AppSpacing.lg),
_buildPreview(ext),
const SizedBox(height: AppSpacing.md),
const SizedBox(height: AppSpacing.lg),
_buildRadiusSection(ext),
const SizedBox(height: 20),
const SizedBox(height: AppSpacing.md),
_buildBorderSection(ext),
const SizedBox(height: 20),
const SizedBox(height: AppSpacing.md),
_buildShadowSection(ext),
const SizedBox(height: 20),
const SizedBox(height: AppSpacing.md),
_buildStackSection(ext),
const SizedBox(height: 20),
const SizedBox(height: AppSpacing.md),
_buildOuterMarginSection(ext),
const SizedBox(height: 40),
const SizedBox(height: 32),
],
),
),