飘带式提升按钮半径

2022-05-07

以下示例是关于Whatever中包含飘带式提升按钮半径用法的示例代码,想了解飘带式提升按钮半径的具体用法?飘带式提升按钮半径怎么用?飘带式提升按钮半径使用的例子?那么可以参考以下相关源代码片段来学习它的具体使用方法。

[英]:flutter elevated button radius源码类型:Whatever
style: ButtonStyle(
  shape: MaterialStateProperty.all<RoundedRectangleBorder>(
    RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(18.0),
      side: BorderSide(color: Colors.red)
    )
  )
)

本文地址:https://www.itbaoku.cn/snippets/785362.html