mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 03:46:47 +01:00
5806a3ce25
* refactor(mobile): widgets * update
26 lines
600 B
Dart
26 lines
600 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,
|
|
);
|
|
}
|
|
}
|