php短視訊原始碼,按鈕的圓角圖示實現

zhibo系統開發發表於2022-06-08

php短視訊原始碼,按鈕的圓角圖示實現

  MaterialButton buildMaterialButton() {
    return MaterialButton(
      //背景顏色
      color: Colors.white,
      //邊框樣式
      shape: const RoundedRectangleBorder(
        //邊框顏色
        side: BorderSide(
          color: Colors.deepPurple,
          width: 1,
        ),
        //邊框圓角
        borderRadius: BorderRadius.all(
          Radius.circular(8),
        ),
      ),
      //按鈕高度
      height: 32,
      //按鈕最小寬度
      minWidth: 60,
      //點選事件
      onPressed: () {},
      child: const Text(
        "查詢",
        style: TextStyle(fontSize: 12, color: Colors.deepPurple),
      ),
    );
  }

以上就是 ,php短視訊原始碼,按鈕的圓角圖示實現更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2899407/,如需轉載,請註明出處,否則將追究法律責任。

相關文章