feat(mobile): update logo (#7919)

* App Icon

* In App Icon

* runner

* ios icon

* ios is done

* splash

* Notification Icon

* Immich text

* Immich text

* actually update andoir icon

* adaptive icon

* adaptive icon
This commit is contained in:
Alex 2024-03-13 12:14:59 -05:00 committed by GitHub
parent ff2f4f8ed8
commit 76432341ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
107 changed files with 202 additions and 626 deletions

View file

@ -13,14 +13,14 @@ class ImmichTitleText extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Text(
'IMMICH',
style: TextStyle(
fontFamily: 'SnowburstOne',
fontWeight: FontWeight.bold,
fontSize: fontSize,
color: color ?? context.primaryColor,
return Image(
image: AssetImage(
context.isDarkTheme
? 'assets/immich-text-dark.png'
: 'assets/immich-text-light.png',
),
width: fontSize * 4,
filterQuality: FilterQuality.high,
);
}
}