Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

06. Flutter AlertDialog對話窗Widget使用重點

$
0
0

知識點

胖箭頭:只包含一個敘述的函數簡寫方式

🔆 => x 意為 {return x;}
🔆 =>> void_function(); 也可為不傳回值的函數

void main() {
runApp(MyApp());
}


// 等於
void main() => runApp(MyApp());

// 另一個例子
void pn(num x) => print(x);

🔆 AlertDialog常用參數
✅content: 內容Widget
✅ actions: 使用者回應用按鈕
✅ shape: 對話窗形狀

🔆 showDialog範例:

    showDialog(
      barrierDismissible: false,
      context: context,
      builder: (BuildContext context) => dialog,
    );
  • RoundedRectangleBorder: 圓角shape
  • BorderRadius: 外框半徑位置
  • Radius.circular(i): 圓形半徑值
  • FlatButton: 平面按鈕
  • Row: 橫列Widget
  • Column: 直欄Widget

demo6.dart原始程式

解說影片


##

您可能也會有興趣的類似文章


Viewing all articles
Browse latest Browse all 897

Trending Articles