mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 08:46:18 +01:00
Hide thumbnail after large image loaded in viewer
This commit is contained in:
parent
1926bdd8a6
commit
c8f761285c
1 changed files with 28 additions and 25 deletions
|
@ -136,7 +136,9 @@ class _RemoteImageViewerState extends State<RemoteImageViewer> {
|
|||
child: Stack(
|
||||
fit: StackFit.expand,
|
||||
children: [
|
||||
Hero(
|
||||
Opacity(
|
||||
opacity: !_isHeroDone || !_isLoaded ? 1 : 0,
|
||||
child: Hero(
|
||||
tag: flutter_util.getImageHeroTag(widget.file),
|
||||
flightShuttleBuilder: (flightContext, animation, flightDirection,
|
||||
fromHeroContext, toHeroContext) {
|
||||
|
@ -164,6 +166,7 @@ class _RemoteImageViewerState extends State<RemoteImageViewer> {
|
|||
imageRenderMethodForWeb: ImageRenderMethodForWeb.HttpGet,
|
||||
),
|
||||
),
|
||||
),
|
||||
if (_isHeroDone)
|
||||
mod.CachedNetworkImage(
|
||||
fit: BoxFit.contain,
|
||||
|
|
Loading…
Reference in a new issue