We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc2b172 commit 59fb6baCopy full SHA for 59fb6ba
lib/main_window.dart
@@ -383,6 +383,12 @@ class _MainWindowState extends State<MainWindow> with WindowListener {
383
child: GestureDetector(
384
onTap: (){
385
FlutterClipboard.copy("$address:${sharePort.text}");
386
+ ScaffoldMessenger.of(context).showSnackBar(
387
+ const SnackBar(
388
+ content: Text("已复制"),
389
+ duration: Duration(milliseconds: 500),
390
+ ),
391
+ );
392
},
393
child: ValueListenableBuilder(
394
valueListenable: sharePort,
0 commit comments