亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

AlertDialog彈出時如何禁止背景滾動

小樊
86
2024-09-04 16:47:35
欄目: 編程語言

要在彈出AlertDialog時禁止背景滾動,可以使用WillPopScopeNavigator來實現

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('AlertDialog 示例')),
        body: Home(),
      ),
    );
  }
}

class Home extends StatefulWidget {
  @override
  _HomeState createState() => _HomeState();
}

class _HomeState extends State<Home> {
  bool _isDialogOpen = false;

  void _showDialog() {
    setState(() {
      _isDialogOpen = true;
    });

    showDialog(
      context: context,
      barrierDismissible: false, // 設置為false,以防止對話框在點擊背景時消失
      builder: (BuildContext context) {
        return AlertDialog(
          title: Text('提示'),
          content: Text('這是一個AlertDialog'),
          actions:<Widget>[
            FlatButton(
              child: Text('確定'),
              onPressed: () {
                Navigator.of(context).pop();
                setState(() {
                  _isDialogOpen = false;
                });
              },
            )
          ],
        );
      },
    );
  }

  @override
  Widget build(BuildContext context) {
    return WillPopScope(
      onWillPop: () async {
        if (_isDialogOpen) {
          // 如果對話框打開,不允許返回
          return false;
        } else {
          // 如果對話框關閉,允許返回
          return true;
        }
      },
      child: Stack(
        children: [
          ListView.builder(
            itemCount: 30,
            itemBuilder: (BuildContext context, int index) {
              return ListTile(title: Text('Item $index'));
            },
          ),
          Positioned(
            bottom: 16,
            right: 16,
            child: FloatingActionButton(
              onPressed: _showDialog,
              child: Icon(Icons.add),
            ),
          ),
        ],
      ),
    );
  }
}

在這個示例中,我們使用WillPopScope來控制返回操作。當對話框打開時,我們不允許用戶通過返回按鈕關閉對話框。同時,我們使用setState來更新_isDialogOpen變量,以便在對話框打開或關閉時更改其狀態。

0
怀安县| 北碚区| 天等县| 昆明市| 沂南县| 芷江| 钟祥市| 四子王旗| 旬阳县| 寿宁县| 崇左市| 舟曲县| 玉龙| 阿拉善左旗| 新河县| 改则县| 临城县| 湖州市| 云浮市| 沙洋县| 湖南省| 兴化市| 兴国县| 长岭县| 鱼台县| 邵阳市| 吉安市| 岐山县| 盱眙县| 新竹市| 巴中市| 上杭县| 读书| 东明县| 米泉市| 茂名市| 莫力| 平阴县| 府谷县| 视频| 肃宁县|