mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 03:19:01 -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
86 lines
2.7 KiB
Dart
86 lines
2.7 KiB
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
|
|
class SharingSliverAppBar extends StatelessWidget {
|
|
const SharingSliverAppBar({
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SliverAppBar(
|
|
centerTitle: true,
|
|
floating: false,
|
|
pinned: true,
|
|
snap: false,
|
|
automaticallyImplyLeading: false,
|
|
title: Text(
|
|
'IMMICH',
|
|
style: TextStyle(
|
|
fontFamily: 'SnowburstOne',
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 22,
|
|
color: Theme.of(context).primaryColor,
|
|
),
|
|
),
|
|
bottom: PreferredSize(
|
|
preferredSize: const Size.fromHeight(50.0),
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Expanded(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(right: 4.0),
|
|
child: ElevatedButton.icon(
|
|
onPressed: () {
|
|
AutoRouter.of(context)
|
|
.push(CreateAlbumRoute(isSharedAlbum: true));
|
|
},
|
|
icon: const Icon(
|
|
Icons.photo_album_outlined,
|
|
size: 20,
|
|
),
|
|
label: const Text(
|
|
"sharing_silver_appbar_create_shared_album",
|
|
maxLines: 1,
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 11,
|
|
// color: Theme.of(context).primaryColor,
|
|
),
|
|
).tr(),
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(left: 4.0),
|
|
child: ElevatedButton.icon(
|
|
onPressed: null,
|
|
icon: const Icon(
|
|
Icons.swap_horizontal_circle_outlined,
|
|
size: 20,
|
|
),
|
|
label: const Text(
|
|
"sharing_silver_appbar_share_partner",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 11,
|
|
),
|
|
maxLines: 1,
|
|
).tr(),
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|