web-dev-qa-db-fra.com

BoxConstraints force une largeur infinie

Je reçois une erreur lorsque j'ajoute une ligne dans la colonne. J'obtiens l'erreur suivante:

I/flutter ( 6449): ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
I/flutter ( 6449): The following assertion was thrown during performLayout():
I/flutter ( 6449): BoxConstraints forces an infinite width.
I/flutter ( 6449): These invalid constraints were provided to RenderAnimatedOpacity's layout() function 

Aussi pour référence ici est mon code:

return new Scaffold(
      backgroundColor: whiteColor,
      body: new Column(
        children: <Widget>[
          imgHeader,
          lblSignUp,
          txtEmail,
          Row(
            mainAxisAlignment: MainAxisAlignment.start,
            children: <Widget>[
              txtFirstName,
              txtLastName
            ],
          ),
        ],
      ),
    );
10
Code Hunter

Si vous utilisez TextField dans un Row, vous devez utiliser Flexible ou Expanded.

Plus de détails sont donnés ici dans cette réponse.

https://stackoverflow.com/a/45990477/4652688

27
vipin agrahari