为什么showSnackBar给出上述错误。“
IconButton(
icon: const Icon(Icons.content_copy),
iconSize: 24,
onPressed: () {
Clipboard.setData(ClipboardData(text: transaction.transCode));
scaffoldKey.currentState?.showSnackBar(SnackBar(
backgroundColor: Theme.of(context).iconTheme.color,
content: Tooltip(
message: Utils.getString(context, 'transaction_detail__copy'),
child: Text(
Utils.getString(context, 'transaction_detail__copied_data'),
style: Theme.of(context)
.textTheme
.headline6!
.copyWith(color: PsColors.mainColor),
),
showDuration: const Duration(seconds: 5),
),
));
},
),
'
我已经尝试将我的全局密钥更改为全局密钥,结果错误更多。该怎么办?
1条答案
按热度按时间2ic8powd1#
这种尝试显示snackbar的调用方式已被弃用,相反,您可以像这样使用
ScaffoldMessenger
:查看此页面