🐛 Fix some bugs

This commit is contained in:
2026-01-15 00:09:41 +08:00
parent d0e4fde6c2
commit e1fc5311d2

View File

@@ -304,7 +304,9 @@ class ClockCard extends HookConsumerWidget {
), ),
], ],
), ),
Row( SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
spacing: 5, spacing: 5,
children: [ children: [
notableDay.when( notableDay.when(
@@ -318,6 +320,7 @@ class ClockCard extends HookConsumerWidget {
), ),
], ],
), ),
),
], ],
), ),
), ),
@@ -557,7 +560,7 @@ class FortuneCard extends HookConsumerWidget {
), ),
Text('—— ${fortune.source}').bold(), Text('—— ${fortune.source}').bold(),
], ],
).padding(horizontal: 16); ).padding(horizontal: 16, vertical: unlimited ? 12 : 0);
}, },
), ),
); );