mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	* adds onboarding * fixed error where login was taking you to permission page * fixed a bad rebase and added more checks to not start backup service on login if no gallery permission * forgot the permission handler import in AppDelegate * reverts album selection page * change to ref watch * added device_info_plus to podspec * removed unused import --------- Co-authored-by: Marty Fuhry <marty@fuhry.farm>
		
			
				
	
	
		
			26 lines
		
	
	
		
			478 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			478 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:flutter/material.dart';
 | 
						|
 | 
						|
class ImmichLogo extends StatelessWidget {
 | 
						|
  final double size;
 | 
						|
  final dynamic heroTag;
 | 
						|
 | 
						|
  const ImmichLogo({
 | 
						|
    super.key,
 | 
						|
    this.size = 100,
 | 
						|
    this.heroTag,
 | 
						|
  });
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    return Hero(
 | 
						|
      tag: heroTag,
 | 
						|
      child: Image(
 | 
						|
        image: const AssetImage('assets/immich-logo-no-outline.png'),
 | 
						|
        width: size,
 | 
						|
        filterQuality: FilterQuality.high,
 | 
						|
      ),
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
}
 |