Flutter - DropdownMenuItem 中的文本溢出

问题描述 投票:0回答:2

我正在尝试使用 DropdownButton 构建一个国家/地区选择小部件,该小部件可以在任何地方使用,例如与其他小部件(例如标签)一起使用。但是当屏幕宽度太小时,我会出现渲染溢出错误。 Flutter 无法使用省略号或仅剪切文本。

以下代码最好在网络中进行测试。只需将浏览器缩小即可看到问题。我尝试了 Flutter - DropdownButton Overflow 中的所有提示,但没有任何效果。

flutter --version
Flutter 2.2.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision f4abaa0735 (4 weeks ago) • 2021-07-01 12:46:11 -0700
Engine • revision 241c87ad80
Tools • Dart 2.13.4

文件main.dart包含实例varflag,它应该代表一个标志图像,因此这个图像可以有固定的大小,但如果没有足够的空间,名称应该用省略号剪切。

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key}) : super(key: key);

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  List<Country> countries = [
    Country('FR', 'France'),
    Country('GB', 'Great Britain'),
    Country('AG', 'Antigua and Barbuda Islands')
  ];
  String? flag = null;

  Widget _buildDropdown() {
    return DropdownButton<String>(
//      isExpanded: true,
      items: [
        for (Country country in countries)
          DropdownMenuItem(
            value: country.flag,
            child: Row(
              mainAxisAlignment: MainAxisAlignment.start,
              children: [
                SizedBox(
                  width: 30,
                  child: Text(country.flag),
                ),
//                Expanded( child:
//                Flexible( child:
                Text(
                  country.name,
                  overflow: TextOverflow.ellipsis,
                ),
//                ),
              ],
            ),
          ),
      ],
      onChanged: (String? selectedFlag) => setState(() => flag = selectedFlag!),
      value: flag,
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Text overflow in Dropdown'),
      ),
      body: Container(
        width: 200,
        child: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              _buildDropdown(),
              Text('Selected $flag'),
            ],
          ),),),);}}

class Country {
  String flag;
  String name;
  Country(this.flag, this.name);
}

flutter rendering overflow dropdownbox
2个回答
1
投票

我们来试试吧

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key}) : super(key: key);

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  List<Country> countries = [
    Country('FR', 'France'),
    Country('GB', 'Great Britain'),
    Country('AG', 'Antigua and Barbuda Islands Antigua and Barbuda IslandsAntigua and Barbuda Islands Antigua and Barbuda IslandsAntigua and Barbuda Islands, Antigua and Barbuda Islands')
  ];

  String flag = null;

  Widget _buildDropdown() {
    return DropdownButton<String>(
      isExpanded: true,
      items: [
        for (Country country in countries)
          DropdownMenuItem(
            value: country.flag,
            child: Wrap(
              children: [
                SizedBox(
                  width: 30,
                  child: Text(country.flag),
                ),
                Container(
                  constraints: new BoxConstraints(
                    minHeight: 20.0,
                    maxHeight: 20.0,
                  ),
                  child: Text(
                    country.name,
                  ),
                ),
              ],
            ),
          ),
      ],
      onChanged: (String selectedFlag) => setState(() => flag = selectedFlag),
      value: flag,
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Text overflow in Dropdown'),
      ),
      body: SingleChildScrollView(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            _buildDropdown(),
            Text('Selected $flag'),
          ],
        ),
      ),
    );
  }
}

class Country {
  String flag;
  String name;

  Country(this.flag, this.name);
}


浏览器输出:


0
投票

我可能来晚了一点,但自从我遇到了错误,这就是我通过添加 isExpanded = true 来修复它的方法,

DropdownButtonFormField<T>(
             isExpanded: true,    
            value: null,
            items: dropdownItems,
            onChanged: onChanged,
            decoration: InputDecoration(
              hintText: 'Select $label',
              border: OutlineInputBorder(),
            ),
          ),
© www.soinside.com 2019 - 2024. All rights reserved.