先上代码:
Container(
width: 200,
child: Text(
“something”,
style: const TextStyle(
fontSize: 12,
fontWeight: FontWeight.w100
),
overflow: TextOverflow.visible,
),
),
关键点:
- 用Container包裹Text,设置width!
- overflow设置为TextOverflow.visible
就能自动换行啦!!!