v1.1.22+52
All checks were successful
Flutter Schmutter / build (push) Successful in 3m39s

This commit is contained in:
2025-06-11 21:30:05 +02:00
parent 7981436374
commit 16ebc51e77
5 changed files with 20 additions and 12 deletions

View File

@ -124,6 +124,7 @@ class _DetailViewState extends ConsumerState<DetailView> {
return Scaffold(
endDrawer: EndDrawer(ref: ref),
endDrawerEnableOpenDragGesture: false,
persistentFooterButtons: mediaState.tag != null
? [
Center(
@ -141,7 +142,6 @@ class _DetailViewState extends ConsumerState<DetailView> {
slivers: [
SliverAppBar(
floating: true,
pinned: true,
snap: true,
centerTitle: true,
title: Text('f0ck #${mediaState.mediaItems[_currentIndex].id}'),
@ -227,9 +227,6 @@ class _DetailViewState extends ConsumerState<DetailView> {
),
),
],
flexibleSpace: FlexibleSpaceBar(
background: Container(color: Colors.transparent),
),
),
SliverPadding(
padding: EdgeInsets.zero,

View File

@ -40,7 +40,7 @@ class _FullScreenMediaViewState extends State<FullScreenMediaView> {
child: widget.item.mime.startsWith('image')
? InteractiveViewer(
minScale: 1.0,
maxScale: 6.0,
maxScale: 7.0,
child: CachedNetworkImage(
imageUrl: widget.item.mediaUrl,
fit: BoxFit.contain,

View File

@ -106,7 +106,7 @@ class _MediaGridState extends ConsumerState<MediaGrid> {
],
),
SliverPadding(
padding: const EdgeInsets.all(5.0),
padding: EdgeInsets.zero,
sliver: SliverGrid(
delegate: SliverChildBuilderDelegate(
(context, index) {
@ -136,6 +136,7 @@ class _MediaGridState extends ConsumerState<MediaGrid> {
scrollController: _scrollController,
),
endDrawer: EndDrawer(ref: ref),
endDrawerEnableOpenDragGesture: false,
persistentFooterButtons: mediaState.tag != null
? [
Center(