chore: styling for asset_viewer bottom sheet (#20006)

bottom sheet styling
This commit is contained in:
Alex 2025-07-18 08:36:29 -05:00 committed by GitHub
parent 53acf08263
commit 137f0d48c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 43 additions and 42 deletions

View file

@ -1,9 +1,11 @@
import 'package:auto_route/auto_route.dart';
import 'package:flutter/widgets.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:immich_mobile/extensions/translate_extensions.dart';
import 'package:immich_mobile/presentation/widgets/timeline/timeline.widget.dart';
import 'package:immich_mobile/providers/infrastructure/timeline.provider.dart';
import 'package:immich_mobile/providers/user.provider.dart';
import 'package:immich_mobile/widgets/common/mesmerizing_sliver_app_bar.dart';
@RoutePage()
class DriftVideoPage extends StatelessWidget {
@ -27,7 +29,9 @@ class DriftVideoPage extends StatelessWidget {
},
),
],
child: const Timeline(),
child: Timeline(
appBar: MesmerizingSliverAppBar(title: 'videos'.t()),
),
);
}
}