fix(mobile): trash description cut off

This commit is contained in:
Yaros
2025-10-05 11:27:54 +02:00
parent bb72d723e2
commit 172061f128

View File

@@ -44,10 +44,7 @@ class DriftTrashPage extends StatelessWidget {
return SliverPadding( return SliverPadding(
padding: const EdgeInsets.all(16.0), padding: const EdgeInsets.all(16.0),
sliver: SliverToBoxAdapter( sliver: SliverToBoxAdapter(
child: SizedBox( child: const Text("trash_page_info").t(context: context, args: {"days": "$trashDays"}),
height: 24.0,
child: const Text("trash_page_info").t(context: context, args: {"days": "$trashDays"}),
),
), ),
); );
}, },