真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

FlutterWidgets對話框-Dialog

Flutter Widgets 對話框-Dialog

注意:無特殊說明,F(xiàn)lutter版本及Dart版本如下:

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比新邵網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式新邵網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋新邵地區(qū)。費(fèi)用合理售后完善,十載實體公司更值得信賴。

  • Flutter版本: 1.12.13+hotfix.5
  • Dart版本: 2.7.0

當(dāng)應(yīng)用程序進(jìn)行重要操作時經(jīng)常需要用戶進(jìn)行2次確認(rèn),以避免用戶的誤操作,比如刪除文件時,一般會彈出提示“是否要刪除當(dāng)前文件”,用戶點(diǎn)擊確認(rèn)后才會進(jìn)行刪除操作,這時我們可以使用提示框(AlertDialog或者CupertinoAlertDialog)。

根據(jù)設(shè)計的不同,我們可以選擇Material風(fēng)格的AlertDialog或者Cupertino(ios)風(fēng)格的CupertinoAlertDialog,

Material風(fēng)格基礎(chǔ)用法如下:

RaisedButton(
  child: Text('切換'),
  onPressed: () {
    showDialog(
        context: context,
        builder: (context) {
          return AlertDialog(
            title: Text('提示'),
            content: Text('確認(rèn)刪除嗎?'),
            actions: [
              FlatButton(child: Text('取消'),onPressed: (){},),
              FlatButton(child: Text('確認(rèn)'),onPressed: (){},),
            ],
          );
        });
  },
)

Material風(fēng)格效果:

Flutter Widgets 對話框-Dialog

Cupertino(ios)風(fēng)格基礎(chǔ)用法如下:

RaisedButton(
  child: Text('切換'),
  onPressed: () {
    showCupertinoDialog(
        context: context,
        builder: (context) {
          return CupertinoAlertDialog(
            title: Text('提示'),
            content: Text('確認(rèn)刪除嗎?'),
            actions: [
              CupertinoDialogAction(child: Text('取消'),onPressed: (){},),
              CupertinoDialogAction(child: Text('確認(rèn)'),onPressed: (){},),
            ],
          );
        });
  },
)

Cupertino(ios)風(fēng)格效果如下:

Flutter Widgets 對話框-Dialog

showDialogAlertDialog配合使用展示Material風(fēng)格對話框, showCupertinoDialogCupertinoAlertDialog配合使用展示iOS風(fēng)格對話框, showCupertinoDialog點(diǎn)擊空白處是無法退出對話框的,而 showDialog點(diǎn)擊空白處默認(rèn)退出對話框, barrierDismissible屬性控制點(diǎn)擊空白處的行為,用法如下:

showDialog(
    barrierDismissible: false,
    )

AlertDialog的屬性相對比較豐富,可以設(shè)置title樣式、content樣式、背景顏色、陰影值,設(shè)置是形狀:

AlertDialog(
  title: Text('提示'),
  content: Text('確認(rèn)刪除嗎?'),
  backgroundColor: Colors.lightBlueAccent,
  elevation: 24,
  shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(50)),
  actions: [
    FlatButton(child: Text('取消'),onPressed: (){},),
    FlatButton(child: Text('確認(rèn)'),onPressed: (){},),
  ],
)

Flutter Widgets 對話框-Dialog

用戶點(diǎn)擊“取消”或者“確定”按鈕后退出對話框,App需要知道知道用戶選擇了哪個選項,用法如下:

RaisedButton(
  child: Text('切換'),
  onPressed: () async {
    var result = await showDialog(
        context: context,
        builder: (context) {
          return AlertDialog(
            title: Text('提示'),
            content: Text('確認(rèn)刪除嗎?'),
            actions: [
              FlatButton(
                child: Text('取消'),
                onPressed: () {
                  Navigator.of(context).pop('cancel');
                },
              ),
              FlatButton(
                child: Text('確認(rèn)'),
                onPressed: () {
                  Navigator.of(context).pop('ok');
                },
              ),
            ],
          );
        });
    print('$result');
  },
)

如果你覺得系統(tǒng)提供的這2個風(fēng)格的對話框不夠個性,你可以試試SimpleDialog,用法和AlertDialog基本相同,如下:

SimpleDialog(
  title: Text('提示'),
  children: [
    Container(
      height: 80,
      alignment: Alignment.center,
      child: Text('確認(rèn)刪除嗎?'),
    ),
    Divider(height: 1,),
    FlatButton(
      child: Text('取消'),
      onPressed: () {
        Navigator.of(context).pop('cancel');
      },
    ),
    Divider(height: 1,),
    FlatButton(
      child: Text('確認(rèn)'),
      onPressed: () {
        Navigator.of(context).pop('ok');
      },
    ),
  ],
)

效果如下:

Flutter Widgets 對話框-Dialog

如果你覺得這還是不夠個性,那可以祭出終極大招了,直接使用Dialog,Dialog可以定制任何對話框,只需將對話框的內(nèi)容給child屬性:

Dialog(
  child: MyDialog(),
);

當(dāng)然一般情況下,系統(tǒng)提供的對話框就夠用了,這幾個對話框組件用法基本一樣,不同的地方僅僅是靈活性和使用簡易程度的不要,Dialog最靈活,但使用起來比AlertDialog復(fù)雜一些,AlertDialog使用起來非常簡單,但布局和基本樣式都已經(jīng)固定好,不如Dialog靈活。

今天的文章對大家是否有幫助?如果有,請在文章底部留言和點(diǎn)贊,以表示對我的支持,你們的留言、點(diǎn)贊和轉(zhuǎn)發(fā)關(guān)注是我持續(xù)更新的動力!

網(wǎng)站欄目:FlutterWidgets對話框-Dialog
路徑分享:http://weahome.cn/article/pehhpg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部