mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 10:56:47 +01:00
0eacdf93eb
* 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>
27 lines
635 B
Dart
27 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,
|
|
);
|
|
}
|
|
}
|