如何创建从右侧打开且仅显示其宽度 80% 的模态底部 sheet

How to create a modal bottom sheet which opens from the right side and only shows 80% of it's width

它应该是这样的

Bottom sheet from the right side

点击图标即可打开

button

您可以使用内置的 Drawer 小部件。

Scaffold(
  endDrawer: Drawer(
    child: ...
  ),
),

单击 Here 了解有关 Flutter 的更多信息。