mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:35:00 -04:00 
			
		
		
		
	* video loading delayed * Chewie controller implemented in hook * fixing look and feel * Finalizing delay and animations * Fixes issue with immersive mode showing immediately in videos * format fix * Fixes bug where video controls would hide immediately after showing while playing and reverts hide controls timer to 5 seconds * Fixed rebase issues --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:flutter/material.dart';
 | |
| import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
 | |
| 
 | |
| class DelayedLoadingIndicator extends StatelessWidget {
 | |
|   /// The delay to avoid showing the loading indicator
 | |
|   final Duration delay;
 | |
| 
 | |
|   /// Defaults to using the [ImmichLoadingIndicator]
 | |
|   final Widget? child;
 | |
| 
 | |
|   /// An optional fade in duration to animate the loading
 | |
|   final Duration? fadeInDuration;
 | |
| 
 | |
|   const DelayedLoadingIndicator({
 | |
|     super.key,
 | |
|     this.delay = const Duration(seconds: 3),
 | |
|     this.child,
 | |
|     this.fadeInDuration,
 | |
|   });
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context) {
 | |
|     return AnimatedSwitcher(
 | |
|       duration: fadeInDuration ?? Duration.zero,
 | |
|       child: FutureBuilder(
 | |
|         future: Future.delayed(delay),
 | |
|         builder: (context, snapshot) {
 | |
|           if (snapshot.connectionState == ConnectionState.done) {
 | |
|             return child ??
 | |
|                 const ImmichLoadingIndicator(
 | |
|                   key: ValueKey('loading'),
 | |
|                 );
 | |
|           }
 | |
| 
 | |
|           return Container(key: const ValueKey('hiding'));
 | |
|         },
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |