image.png

解决方案

用showModalBottomSheet模块报告内容即可

  1. // 评论弹窗
  2. String commentText = await showModalBottomSheet(
  3. context: context,
  4. isScrollControlled: true,
  5. backgroundColor: Colors.transparent,
  6. builder: (context) {
  7. return NoteCommetInputPanel();
  8. });
  9. )