我在 FloatingActionButton 中有一个 PopupMenuButton。但它的 InkWell 不是圆形的,它是标准的方形。我怎样才能做到这一点?
最佳答案
使用 customBorder
的 InkWell
属性:
InkWell(
customBorder: CircleBorder(),
onTap: () {}
child: ...
)
我在 FloatingActionButton 中有一个 PopupMenuButton。但它的 InkWell 不是圆形的,它是标准的方形。我怎样才能做到这一点?
最佳答案
使用 customBorder
的 InkWell
属性:
InkWell(
customBorder: CircleBorder(),
onTap: () {}
child: ...
)