38 lines
862 B
Dart
38 lines
862 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:localsend_app/util/ui/snackbar.dart';
|
|
|
|
class CopyableText extends StatelessWidget {
|
|
final TextSpan? prefix;
|
|
final String name;
|
|
final String? value;
|
|
|
|
const CopyableText({
|
|
this.prefix,
|
|
required this.name,
|
|
required this.value,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return InkWell(
|
|
onTap: value == null
|
|
? null
|
|
: () async {
|
|
await Clipboard.setData(ClipboardData(text: value!));
|
|
if (context.mounted) {
|
|
context.showSnackBar('Copied $name to clipboard!');
|
|
}
|
|
},
|
|
child: Text.rich(
|
|
TextSpan(
|
|
children: [
|
|
?prefix,
|
|
TextSpan(text: value ?? '-'),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|