Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-05-25 12:15:38 +08:00
parent 86bbdcc90c
commit 525dce989b
107 changed files with 374 additions and 490 deletions

View File

@@ -104,7 +104,7 @@ class _DynamicsPageState extends State<DynamicsPage>
);
switch (upPanelPosition) {
case UpPanelPosition.top:
case .top:
child = Column(
children: [
upPanelPart(theme, isTop: true),
@@ -112,7 +112,7 @@ class _DynamicsPageState extends State<DynamicsPage>
],
);
actions = [_createDynamicBtn(theme)];
case UpPanelPosition.leftFixed:
case .leftFixed:
child = Row(
children: [
upPanelPart(theme),
@@ -120,7 +120,7 @@ class _DynamicsPageState extends State<DynamicsPage>
],
);
actions = [_createDynamicBtn(theme)];
case UpPanelPosition.rightFixed:
case .rightFixed:
child = Row(
children: [
Expanded(child: child),