加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

dart – Flutter – ListView中的DropdownButton溢出

发布时间:2020-12-14 14:51:17 所属栏目:百科 来源:网络整理
导读:我正在尝试使用Flutter,并且当前正尝试在对话框的列表视图中显示输入字段和下拉列表.但是,我得到的下拉式溢出了视图的水平宽度并导致黄灰色条纹图案(如下所示) Overflow of DropdownButton widget in ListView 代码是: class DataInput extends StatefulWid
我正在尝试使用Flutter,并且当前正尝试在对话框的列表视图中显示输入字段和下拉列表.但是,我得到的下拉式溢出了视图的水平宽度并导致黄灰色条纹图案(如下所示)

Overflow of DropdownButton widget in ListView

代码是:

class DataInput extends StatefulWidget {

      @override
      State createState() => new DataInputState("");
    }


    enum DismissDialogAction {
      cancel,discard,save,}

    class DataInputState extends State<DataInput> {
      final String _data;
      static const types = const <Map<String,String>>[
        const {
          "id": "103","desc": "0001 - lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum"
        },const {
          "id": "804","desc": "0002 - lorem ipsum lorem ipsum"
        },];

      DataInputState(this._data);

      @override
      Widget build(BuildContext context) {
        final ThemeData theme = Theme.of(context);
        return new Scaffold(
          appBar: new AppBar(
            title: const Text("Details"),actions: <Widget>[
              new FlatButton(
                  onPressed: () => Navigator.pop(context,DismissDialogAction.save),child: new Row(
                    children: <Widget>[
                      new Icon(Icons.save,color: Colors.white,),new Text(
                          "Save",style: theme.textTheme.body1.copyWith(
                            color: Colors.white,)
                      )
                    ],)
              ),],body: new ListView(
            shrinkWrap: true,children: <Widget>[
              new Text("Set Label"),new TextField(
                autocorrect: false,new Text("Select Type"),new Container(
                width: new FractionColumnWidth(0.5).value,child: new DropdownButton(
                    items: types.map((m) =>
                    new DropdownMenuItem(
                        key: new Key(m["id"]),child: new Text(m["desc"]))
                    ).toList(growable: false),onChanged: null
                ),);
      }
    }

错误:

══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
    The following message was thrown during layout:
    A horizontal RenderFlex overflowed by 433 pixels.

    The edge of the RenderFlex that is overflowing has been marked in the rendering with a yellow and
    black striped pattern. This is usually caused by the contents being too big for the RenderFlex.
    RenderFlex to fit within the available space instead of being sized to their natural size.
    This is considered an error condition because it indicates that there is content that cannot be
    seen. If the content is legitimately bigger than the available space,consider clipping it with a
    RectClip widget before putting it in the flex,or using a scrollable container rather than a Flex,for example using ListView.
    The specific RenderFlex in question is:
    RenderFlex#cc264 relayoutBoundary=up12 OVERFLOWING
    creator: Row ← SizedBox ← DefaultTextStyle ← Stack ← Listener ← _GestureSemantics ←
    RawGestureDetector ← GestureDetector ← DropdownButton ← ConstrainedBox ← Container ←
    RepaintBoundary-[<3>] ← ?
    direction: horizontal
    mainAxisAlignment: space-between
    mainAxisSize: min
    crossAxisAlignment: center
    textDirection: ltr
    verticalDirection: down

我尝试了以下方法,但它们不起作用:

>在行,列,填充和ClipRect中包含下拉列表

有人可以帮助我理解这一点,并说明如何解决它?

更新
使用FittedBox可以防止溢出,但文本大小会缩小到不可读.

解决方法

我认为你在使用DropDownButton本身遇到了一个合法的错误.这里有一个关于这个问题的Github问题: https://github.com/flutter/flutter/issues/9211

如果您需要立即修复,您实际上可以自己修补DropDownButton!为此:

>从Flutter Framework打开dropdown.dart,并将其作为fixed_dropdown.dart粘贴到您自己的项目中.
>从此文件中删除DropDownMenuItem类,以免与正常的Flutter导入冲突
>将DropDownButton重命名为FixedDropDownButton,因此它不会与Flutter导入冲突
>导航到_DropdownButtonState的构建方法.找到一行内的IndexedStack.使用Expanded小部件包装IndexedStack.

我在Github问题本身上发布了这个信息,如果你想看到修复程序在行动中,也可以找到这个解决方案的截图!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读