📜  行中的颤动文本不换行 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:00.352000             🧑  作者: Mango

代码示例1
Expanded(
            child: new Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: [
                new Text(_name, style: Theme.of(context).textTheme.subhead),
                new Container(
                  margin: const EdgeInsets.only(top: 5.0),
                  child: new Text(text),
                ),
              ],
            ),