fix(mobile): trash description cut off (#22662)

This commit is contained in:
Yaros 2025-10-06 18:18:00 +02:00 committed by Chaoscontrol
parent ea9c0683ff
commit 9ba831485e

View file

@ -44,11 +44,8 @@ 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(
height: 24.0,
child: const Text("trash_page_info").t(context: context, args: {"days": "$trashDays"}), child: const Text("trash_page_info").t(context: context, args: {"days": "$trashDays"}),
), ),
),
); );
}, },
), ),