mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
78 lines
3.1 KiB
Dart
78 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
|
|
class AdvancedBottomSheet extends HookConsumerWidget {
|
|
final Asset assetDetail;
|
|
final ScrollController? scrollController;
|
|
|
|
const AdvancedBottomSheet({super.key, required this.assetDetail, this.scrollController});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return SingleChildScrollView(
|
|
controller: scrollController,
|
|
child: Container(
|
|
margin: const EdgeInsets.symmetric(horizontal: 8.0),
|
|
child: LayoutBuilder(
|
|
builder: (context, constraints) {
|
|
// One column
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
const Align(child: Text("ADVANCED INFO", style: TextStyle(fontSize: 12.0))),
|
|
const SizedBox(height: 32.0),
|
|
Container(
|
|
decoration: BoxDecoration(
|
|
color: context.isDarkTheme ? Colors.grey[900] : Colors.grey[200],
|
|
borderRadius: const BorderRadius.all(Radius.circular(15.0)),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(right: 16.0, left: 16, top: 8, bottom: 16),
|
|
child: ListView(
|
|
shrinkWrap: true,
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
children: [
|
|
Align(
|
|
alignment: Alignment.centerRight,
|
|
child: IconButton(
|
|
onPressed: () {
|
|
Clipboard.setData(ClipboardData(text: assetDetail.toString())).then((_) {
|
|
context.scaffoldMessenger.showSnackBar(
|
|
SnackBar(
|
|
content: Text(
|
|
"Copied to clipboard",
|
|
style: context.textTheme.bodyLarge?.copyWith(color: context.primaryColor),
|
|
),
|
|
),
|
|
);
|
|
});
|
|
},
|
|
icon: Icon(Icons.copy, size: 16.0, color: context.primaryColor),
|
|
),
|
|
),
|
|
SelectableText(
|
|
assetDetail.toString(),
|
|
style: const TextStyle(
|
|
fontSize: 12.0,
|
|
fontWeight: FontWeight.bold,
|
|
fontFamily: "Inconsolata",
|
|
),
|
|
showCursor: true,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 32.0),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|