mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
26 lines
747 B
Dart
26 lines
747 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
||
|
|
import 'package:immich_mobile/extensions/translate_extensions.dart';
|
||
|
|
|
||
|
|
class LocalAlbumsSliverAppBar extends StatelessWidget {
|
||
|
|
const LocalAlbumsSliverAppBar({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return SliverAppBar(
|
||
|
|
floating: true,
|
||
|
|
pinned: true,
|
||
|
|
snap: false,
|
||
|
|
backgroundColor: context.colorScheme.surfaceContainer,
|
||
|
|
shape: const RoundedRectangleBorder(
|
||
|
|
borderRadius: BorderRadius.all(Radius.circular(5)),
|
||
|
|
),
|
||
|
|
automaticallyImplyLeading: true,
|
||
|
|
centerTitle: true,
|
||
|
|
title: Text(
|
||
|
|
"on_this_device".t(context: context),
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|