mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 11:56:46 +01:00
d346985457
* date time component * rename to info_sheet * simplify map info * Edit datetime sheet * fix janking when scroll on info sheet * Location refactor * refactor name * Update date time after editing * localize rebuild to smaller component * restore advanced bottom sheet * reassign EXIF back to local database * remove print statements
37 lines
1.3 KiB
Dart
37 lines
1.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/widgets/asset_viewer/description_input.dart';
|
|
import 'package:immich_mobile/widgets/asset_viewer/detail_panel/asset_date_time.dart';
|
|
import 'package:immich_mobile/widgets/asset_viewer/detail_panel/asset_details.dart';
|
|
import 'package:immich_mobile/widgets/asset_viewer/detail_panel/asset_location.dart';
|
|
import 'package:immich_mobile/widgets/asset_viewer/detail_panel/people_info.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
|
|
class DetailPanel extends HookConsumerWidget {
|
|
final Asset asset;
|
|
|
|
const DetailPanel({super.key, required this.asset});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return ListView(
|
|
shrinkWrap: true,
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
|
child: Column(
|
|
children: [
|
|
AssetDateTime(asset: asset),
|
|
asset.isRemote
|
|
? DescriptionInput(asset: asset)
|
|
: const SizedBox.shrink(),
|
|
PeopleInfo(asset: asset),
|
|
AssetLocation(asset: asset),
|
|
AssetDetails(asset: asset),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|