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
107 changed files with 202 additions and 626 deletions

View File

@@ -402,7 +402,10 @@ class LoginForm extends HookConsumerWidget {
),
),
),
const ImmichTitleText(),
const Padding(
padding: EdgeInsets.only(top: 8.0, bottom: 16),
child: ImmichTitleText(),
),
],
),
const SizedBox(height: 18),

View File

@@ -29,36 +29,38 @@ class LoginPage extends HookConsumerWidget {
return Scaffold(
body: const LoginForm(),
bottomNavigationBar: Padding(
padding: const EdgeInsets.only(bottom: 16.0),
child: SizedBox(
height: 50,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'v${appVersion.value}',
style: const TextStyle(
color: Colors.grey,
fontWeight: FontWeight.bold,
fontFamily: "Inconsolata",
),
),
const Text(' '),
GestureDetector(
child: Text(
'Logs',
style: TextStyle(
color: context.primaryColor,
bottomNavigationBar: SafeArea(
child: Padding(
padding: const EdgeInsets.only(bottom: 16.0),
child: SizedBox(
height: 50,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'v${appVersion.value}',
style: const TextStyle(
color: Colors.grey,
fontWeight: FontWeight.bold,
fontFamily: "Inconsolata",
),
),
onTap: () {
context.pushRoute(const AppLogRoute());
},
),
],
const Text(' '),
GestureDetector(
child: Text(
'Logs',
style: TextStyle(
color: context.primaryColor,
fontWeight: FontWeight.bold,
fontFamily: "Inconsolata",
),
),
onTap: () {
context.pushRoute(const AppLogRoute());
},
),
],
),
),
),
),