मुझे एक रेंडरिंग अपवाद मिल रहा है जो मुझे समझ नहीं आ रहा है कि कैसे ठीक किया जाए। मैं एक स्तंभ बनाने का प्रयास कर रहा हूं जिसमें 3 पंक्तियाँ हैं।
रो [छवि]
पंक्ति [पाठ पाठ]
रो [बटन]
यहाँ कंटेनर बनाने के लिए मेरा कोड है:
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;
}
और मेरे buildAppEntryRow पाठ कंटेनर के लिए कोड
Widget buildAppEntryRow(BuildContext context) {
return new Row(
children: <Widget>[
new TextField(
decoration: const InputDecoration(helperText: "Enter App ID"),
style: Theme.of(context).textTheme.body1,
)
],
);
}
जब मैं चलता हूं तो मुझे निम्नलिखित अपवाद मिलते हैं:
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)
अगर मैं buildAppEntryRow को इस तरह बदले सिर्फ एक TextField में बदल दूं
Widget buildAppEntryRow2(BuildContext context) {
return new TextField(
decoration: const InputDecoration(helperText: "Enter App ID"),
style: Theme.of(context).textTheme.body1,
);
}
मुझे अब कोई अपवाद नहीं मिला। मैं पंक्ति कार्यान्वयन के साथ क्या याद कर रहा हूं, जिसके कारण यह उस पंक्ति के आकार की गणना करने में सक्षम नहीं है?