fix: Small improvement to library screen

This commit is contained in:
PartyDonut 2025-10-28 21:44:36 +01:00
parent b2657f6408
commit 16bf5e8a32
3 changed files with 204 additions and 136 deletions

View file

@ -12,6 +12,13 @@ sealed class NameSwitch {
String label(BuildContext context);
}
class Resume extends NameSwitch {
const Resume();
@override
String label(BuildContext context) => context.localized.dashboardContinue;
}
class NextUp extends NameSwitch {
const NextUp();