mirror of
https://github.com/immich-app/immich.git
synced 2024-11-19 03:48:50 -07:00
c1b22125fd
* styling light and dark theme * Icon topbar * Fixed app bar title dark theme * Fixed issue with getting thumbnail for things * Refactor sharing page * Refactor scroll thumb * Refactor chip in auto backup indiation button * Refactor sharing page * Added theme toggle * Up version for testflight build * Refactor backup controller page * Refactor album selection page * refactor album pages * Refactor gradient color profile header * Added theme switcher * Register app theme correctly * Added locale to the app * Added translation key * Styling for bottomsheet colors * up server version * Fixed font size * Fixed overlapsed sliverappbar on photos screen
116 lines
3.3 KiB
Dart
116 lines
3.3 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/album/providers/album.provider.dart';
|
|
import 'package:immich_mobile/modules/album/ui/album_thumbnail_card.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
|
|
class LibraryPage extends HookConsumerWidget {
|
|
const LibraryPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final albums = ref.watch(albumProvider);
|
|
|
|
useEffect(
|
|
() {
|
|
ref.read(albumProvider.notifier).getAllAlbums();
|
|
return null;
|
|
},
|
|
[],
|
|
);
|
|
|
|
Widget _buildAppBar() {
|
|
return const SliverAppBar(
|
|
centerTitle: true,
|
|
floating: true,
|
|
pinned: false,
|
|
snap: false,
|
|
automaticallyImplyLeading: false,
|
|
title: Text(
|
|
'IMMICH',
|
|
style: TextStyle(
|
|
fontFamily: 'SnowburstOne',
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 22,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildCreateAlbumButton() {
|
|
return GestureDetector(
|
|
onTap: () {
|
|
AutoRouter.of(context).push(CreateAlbumRoute(isSharedAlbum: false));
|
|
},
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Container(
|
|
width: MediaQuery.of(context).size.width / 2 - 18,
|
|
height: MediaQuery.of(context).size.width / 2 - 18,
|
|
decoration: BoxDecoration(
|
|
border: Border.all(
|
|
color: Colors.grey,
|
|
),
|
|
borderRadius: BorderRadius.circular(8),
|
|
),
|
|
child: Center(
|
|
child: Icon(
|
|
Icons.add_rounded,
|
|
size: 28,
|
|
color: Theme.of(context).primaryColor,
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
child: const Text(
|
|
'library_page_new_album',
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
).tr(),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
return Scaffold(
|
|
body: CustomScrollView(
|
|
slivers: [
|
|
_buildAppBar(),
|
|
SliverToBoxAdapter(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: const Text(
|
|
'library_page_albums',
|
|
style: TextStyle(fontWeight: FontWeight.bold),
|
|
).tr(),
|
|
),
|
|
),
|
|
SliverPadding(
|
|
padding: const EdgeInsets.only(left: 12.0, right: 12, bottom: 50),
|
|
sliver: SliverToBoxAdapter(
|
|
child: Wrap(
|
|
spacing: 12,
|
|
children: [
|
|
_buildCreateAlbumButton(),
|
|
for (var album in albums)
|
|
AlbumThumbnailCard(
|
|
album: album,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|