简体   繁体   English

这个重叠的小部件名称是什么?

[英]What is this overlapped widget name?

在此处输入图像描述

what is this overlap widget?这个重叠小部件是什么? or is this some kind of effect?或者这是某种效果? please

It's called ModalBottomSheet , You can use this package to create powerful modal bottom sheets.它被称为ModalBottomSheet ,您可以使用package 来创建强大的模态底页。

Use this function on button click:按钮单击时使用此 function:

void _settingModalBottomSheet(BuildContext context){
    showModalBottomSheet(
        context: context,
        builder: (BuildContext bc){
      return Container(
        child: new Wrap(
          children: <Widget>[
            new ListTile(
                leading: new Icon(Icons.music_note),
                title: new Text('Music'),
                onTap: () => {}
            ),
            new ListTile(
              leading: new Icon(Icons.videocam),
              title: new Text('Video'),
              onTap: () => {},
            ),
          ],
        ),
      );
    });
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM