mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	* refactor: move all extensions to separate package * refactor(mobile): add BuildContext extension * refactor(mobile): use theme getters from context * refactor(mobile): use media query size from context * refactor(mobile): use auto router methods from context * refactor(mobile): use navigator methods from context --------- Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			575 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			575 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 Text(
 | 
						|
      'IMMICH',
 | 
						|
      style: TextStyle(
 | 
						|
        fontFamily: 'SnowburstOne',
 | 
						|
        fontWeight: FontWeight.bold,
 | 
						|
        fontSize: fontSize,
 | 
						|
        color: color ?? context.primaryColor,
 | 
						|
      ),
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |