Tôi đang nhận được một ngoại lệ kết xuất mà tôi không hiểu cách khắc phục. Tôi đang cố gắng tạo một cột có 3 hàng.
Hàng [Hình ảnh]
Hàng [TextField]
Hàng [Nút]
Đây là mã của tôi để xây dựng container:
Container buildEnterAppContainer(BuildContext context) {
var container = new Container(
padding: const EdgeInsets.all(8.0),
child: new Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
buildImageRow(context),
buildAppEntryRow(context),
buildButtonRow(context)
],
),
);
return container;
}
và mã buildAppEntryRow của tôi cho vùng chứa văn bản
Widget buildAppEntryRow(BuildContext context) {
return new Row(
children: <Widget>[
new TextField(
decoration: const InputDecoration(helperText: "Enter App ID"),
style: Theme.of(context).textTheme.body1,
)
],
);
}
Khi tôi chạy, tôi nhận được ngoại lệ sau:
I/flutter ( 7674): BoxConstraints forces an infinite width.
I/flutter ( 7674): These invalid constraints were provided to RenderStack's layout() function by the following
I/flutter ( 7674): function, which probably computed the invalid constraints in question:
I/flutter ( 7674): RenderConstrainedBox.performLayout (package:flutter/src/rendering/proxy_box.dart:256:13)
I/flutter ( 7674): The offending constraints were:
I/flutter ( 7674): BoxConstraints(w=Infinity, 0.0<=h<=Infinity)
Nếu tôi thay đổi buildAppEntryRow thành TextField thay vì như thế này
Widget buildAppEntryRow2(BuildContext context) {
return new TextField(
decoration: const InputDecoration(helperText: "Enter App ID"),
style: Theme.of(context).textTheme.body1,
);
}
Tôi không còn nhận được ngoại lệ. Tôi còn thiếu điều gì với việc triển khai Hàng khiến nó không thể tính được kích thước của hàng đó?