# Q: Row直接包裹TextField異常:BoxConstraints forces an infinite width
A: Row中默認每個子控件都盡可能大。而TextField需要父組件給定。故解決方案是使用Expanded包裹。在Row組件下的Expanded組件最大寬度是設備的寬度。
Example:
```
Row(
children:[
Expanded(
child: TextField(),
)
]
)
```