mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	* feat(mobile): add support for material themes Added support for custom theming and updated all elements accordingly. * fix(mobile): Restored immich brand colors to default theme * fix(mobile): make ListTile titles bold in settings main page * feat(mobile): update bottom nav and appbar colors * small tweaks --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			635 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			635 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:flutter/material.dart';
 | 
						|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
 | 
						|
 | 
						|
class ImmichTitleText extends StatelessWidget {
 | 
						|
  final double fontSize;
 | 
						|
  final Color? color;
 | 
						|
 | 
						|
  const ImmichTitleText({
 | 
						|
    super.key,
 | 
						|
    this.fontSize = 48,
 | 
						|
    this.color,
 | 
						|
  });
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    return Image(
 | 
						|
      image: AssetImage(
 | 
						|
        context.isDarkTheme
 | 
						|
            ? 'assets/immich-text-dark.png'
 | 
						|
            : 'assets/immich-text-light.png',
 | 
						|
      ),
 | 
						|
      width: fontSize * 4,
 | 
						|
      filterQuality: FilterQuality.high,
 | 
						|
      color: context.primaryColor,
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |