如果我没有通过函数而只是用 print 进行测试,它就可以工作。我在小部件上传递了 3 个函数,点击的 CircleAvatar 可以工作,但不能使用 RawMaterial / 按钮
RawMaterialButton(
onPressed: () => bannerTap,//print('raw'),
child: RichText(
text: TextSpan(
//recognizer: TapGestureRecognizer()..onTap = ()=> print('Text tapped'),
text: info,
style: TextStyle(color: Colors.white),
children: <TextSpan>[
TextSpan(text: actionMessage, style: TextStyle(fontWeight: FontWeight.bold)),
],
),
),
),