1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-08 23:07:06 +02:00

chore(mobile): small visual fix and update (#17547)

* chore(mobile): small visual fix and update

* update

* update

* remove design placeholder
This commit is contained in:
Alex
2025-04-13 08:01:32 -05:00
committed by GitHub
parent 1f18fe31f0
commit ab2a7006f9
11 changed files with 168 additions and 39 deletions

View File

@ -53,28 +53,29 @@ class PhotosPage extends HookConsumerWidget {
padding: const EdgeInsets.only(top: 16.0),
child: Text(
'home_page_building_timeline',
style: TextStyle(
fontWeight: FontWeight.w600,
fontSize: 16,
style: context.textTheme.titleMedium?.copyWith(
color: context.primaryColor,
),
).tr(),
),
const SizedBox(height: 8),
AnimatedOpacity(
duration: const Duration(milliseconds: 500),
duration: const Duration(milliseconds: 1000),
opacity: tipOneOpacity.value,
child: SizedBox(
width: 250,
child: Padding(
padding: const EdgeInsets.only(top: 8.0),
child: const Text(
'home_page_first_time_notice',
textAlign: TextAlign.justify,
style: TextStyle(
fontSize: 12,
child: Column(
children: [
SizedBox(
width: 320,
child: Padding(
padding: const EdgeInsets.only(top: 8.0),
child: Text(
'home_page_first_time_notice',
textAlign: TextAlign.center,
style: context.textTheme.bodyMedium,
).tr(),
),
).tr(),
),
),
],
),
),
],