Compare commits

...

2 Commits

Author SHA1 Message Date
Gustavo Moreno
48b8d7fc28
Merge 3ff0f6dd27 into 0326630a19 2025-05-04 03:42:12 +00:00
Gustavo Moreno
3ff0f6dd27 bug #2354: Fix icon overflow in Local Folder Cache page
- Wrapped  inside  to prevent layout breaking

Fixes #2354
2025-02-27 13:31:44 +01:00

View File

@ -138,8 +138,10 @@ class LocalLibraryPage extends HookConsumerWidget {
icon: Column(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(SpotubeIcons.delete),
Text(context.l10n.clear_cache)
const Expanded(child: Icon(SpotubeIcons.delete)),
Text(
context.l10n.clear_cache,
)
],
).xSmall().iconSmall(),
onPressed: () async {
@ -180,7 +182,7 @@ class LocalLibraryPage extends HookConsumerWidget {
icon: Column(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(SpotubeIcons.export),
const Expanded(child: Icon(SpotubeIcons.export)),
Text(
context.l10n.export,
)