🍱 Update localization assets

This commit is contained in:
2025-12-21 00:37:44 +08:00
parent 5f094aca4b
commit b7360f1f91
2 changed files with 65 additions and 4 deletions

View File

@@ -51,10 +51,10 @@ class DashboardGrid extends HookConsumerWidget {
spacing: 16,
children: [
// Clock card spans full width
ClockCard().padding(horizontal: 24),
ClockCard().padding(horizontal: isWide ? 24 : 16),
// Row with two cards side by side
Padding(
padding: const EdgeInsets.symmetric(horizontal: 24),
padding: EdgeInsets.symmetric(horizontal: isWide ? 24 : 16),
child: SearchBar(
hintText: 'Search Anything...',
constraints: const BoxConstraints(minHeight: 56),
@@ -80,7 +80,7 @@ class DashboardGrid extends HookConsumerWidget {
topLeft: isWide ? 0 : 12,
topRight: isWide ? 0 : 12,
)
.padding(horizontal: isWide ? 0 : 24),
.padding(horizontal: isWide ? 0 : 16),
),
],
),