This commit is contained in:
Gustavo Moreno 2025-08-27 23:54:07 -04:00 committed by GitHub
commit fb362b9cfc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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