解决方案 解决方案用showModalBottomSheet模块报告内容即可 // 评论弹窗String commentText = await showModalBottomSheet( context: context, isScrollControlled: true, backgroundColor: Colors.transparent, builder: (context) { return NoteCommetInputPanel(); });)