Compare commits

..

1 Commits

Author SHA1 Message Date
Yaros
172061f128 fix(mobile): trash description cut off 2025-10-05 11:27:54 +02:00
2 changed files with 2 additions and 5 deletions

View File

@@ -44,10 +44,7 @@ class DriftTrashPage extends StatelessWidget {
return SliverPadding(
padding: const EdgeInsets.all(16.0),
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"}),
),
);
},

View File

@@ -91,7 +91,7 @@ class DriftEditImagePage extends ConsumerWidget {
backgroundColor: context.scaffoldBackgroundColor,
leading: IconButton(
icon: Icon(Icons.close_rounded, color: context.primaryColor, size: 24),
onPressed: () => context.navigator.pop(),
onPressed: () => context.navigator.popUntil((route) => route.isFirst),
),
actions: <Widget>[
TextButton(