首页 > 解决方案 > 溢出属性不会剪辑文本小部件中的内容

问题描述

有一个小部件

Row(mainAxisAlignment: MainAxisAlignment.start, children: <Widget>[
  Padding(
    padding: const EdgeInsets.symmetric(horizontal: 8.0),
    child: const Icon(
      Icons.warning,
      color: Colors.deepOrange,
    ),
  ),
  const Text(
    'Failed to fetch repos for',
    style: TextStyle(color: Colors.deepOrange),
  ),
  Text(
    store.user,
    style: const TextStyle(color: Colors.deepOrange, fontWeight: FontWeight.bold),
    overflow: TextOverflow.ellipsis, // here it is
  )
])

由于某种原因,该overflow属性不起作用。

在此处输入图像描述

标签: flutter

解决方案


推荐阅读