web-dev-qa-db-fra.com

Flutter - Comment obtenir un conteneur avec des enfants pour occuper tout l'écran

Selon les documents Flutter Containers with no children try to be as big as possible unless the incoming constraints are unbounded, in which case they try to be as small as possible. Containers with children size themselves to their children. Le plus proche que j'ai été de le faire fonctionner:

return Stack(
  children: <Widget>[
    Container(
      width: MediaQuery.of(context).size.width,
      height: MediaQuery.of(context).size.height,
      //width: Device.screenWidth,
      //height: Device.screenHeight,
      child: Column(
        children: <Widget>[(view[1])],
      ),
    ),
    Container(
      width: MediaQuery.of(context).size.width * .50,
      height: MediaQuery.of(context).size.width * .50,
      child: Column(
        children: <Widget>[(view[0])],
      ),
    ),
  ],
);


I/flutter (12292): The following message was thrown during layout:
I/flutter (12292): A RenderFlex overflowed by 81 pixels on the bottom.
I/flutter (12292): The overflowing RenderFlex has an orientation of Axis.vertical.
I/flutter (12292): The Edge of the RenderFlex that is overflowing has been marked in the rendering with a yellow and
I/flutter (12292): black striped pattern. This is usually caused by the contents being too big for the RenderFlex.

Vous ne comprenez pas pourquoi MediaQuery ou Device n'empêche pas le débordement? Le premier conteneur déborde toujours de 81 pixels à la fois sur un Android; pas d'iPhone ou d'iPad à tester maintenant. Sur la base de ce que j'ai lu dans d'autres articles, le débordement de jaune et de noir est corrigé simplement en enveloppant dans un SingleChildScrollView mais quand j'essaie de le faire, j'obtiens

child: SingleChildScrollView(
        child: Column(
          children: <Widget>[(view[1])],
        ),
      ),

I/flutter (12292): ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
I/flutter (12292): The following assertion was thrown during performLayout():
I/flutter (12292): RenderFlex children have non-zero flex but incoming height constraints are unbounded.
I/flutter (12292): When a column is in a parent that does not provide a finite height constraint, for example if it is
I/flutter (12292): in a vertical scrollable, it will try to shrink-wrap its children along the vertical axis. Setting a
I/flutter (12292): flex on a child (e.g. using Expanded) indicates that the child is to expand to fill the remaining
I/flutter (12292): space in the vertical direction.
I/flutter (12292): These two directives are mutually exclusive. If a parent is to shrink-wrap its child, the child
.
.
.
I/flutter (12292):   crossAxisAlignment: center
I/flutter (12292):   verticalDirection: down
I/flutter (12292): This RenderObject had the following child:
I/flutter (12292):   RenderAndroidView#e356e NEEDS-LAYOUT NEEDS-Paint

A fait plusieurs autres tentatives avec Expanded, ClipRect et d'autres widgets en fonction des erreurs que j'ai vues, mais cela n'a fait qu'empirer là où il n'y avait aucune image. Suis-je en train de manquer quelque chose de simple ou dois-je essayer de résoudre ce problème d'une autre manière?

EDIT: Selon Amsakanna, la dernière tentative est ci-dessous mais déborde toujours de 81 pixels pour produire un message d'erreur identique ci-dessus dans le premier bloc de code.

return Stack(
  children: <Widget>[
    SingleChildScrollView(
      child: Container(
        width: MediaQuery.of(context).size.width,
        height: MediaQuery.of(context).size.height,
        child: Column(
          children: <Widget>[view[1])],
        ),
      ),
    ),

I/flutter ( 1144): The following message was thrown during layout:
I/flutter ( 1144): A RenderFlex overflowed by 81 pixels on the bottom.
I/flutter ( 1144): The overflowing RenderFlex has an orientation of Axis.vertical.
I/flutter ( 1144): The Edge of the RenderFlex that is overflowing has been marked in the rendering with a yellow and
I/flutter ( 1144): black striped pattern. This is usually caused by the contents being too big for the RenderFlex.

J'ai essayé d'utiliser IntrinsicHeight dans SingleChildScrollView comme trouvé ici dans la section Expanding content to fit the viewport section but it overflows too (by 81 pixels) avec un message d'erreur similaire.

6
JC23

Mon approche...

return Scaffold(
      appBar: AppBar(
        title: Text('Title'),
      ),
      body: Container(
        color: Colors.Indigo[200],
        alignment: Alignment.center,
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Container(
              child: Image.file(_image),
            ),
          ],
        ),
      ),
    );
0
Nikhil Chigali

Ça marche pour moi..

return Scaffold(
              appBar: AppBar(
                title: Text("chatEasy"),
                backgroundColor: Color.fromRGBO(102, 108, 218, 1),
              ),
              body: Container(
                child: Column(
                  children: <Widget>[
                    Expanded(
                      child: Container(
                        child: Image(
                          image: AssetImage("images/baseScreen.png"),
                          fit: BoxFit.fitHeight,
                        ),
                      ),
                    ),
                  ],
                ),
              ),
            );
          }
        }
0
Raghib Arshi

Vous l'avez fait correctement en l'enveloppant dans un SingleChildScrollView.

La deuxième erreur se produit chaque fois qu'un widget flexible comme "Expanded" est placé à l'intérieur d'une colonne. Si vous n'avez placé aucun widget développé dans la première colonne, c'est probablement le widget Appareil photo qui le fait.

Essayez de donner une taille définie à votre widget Appareil photo en l'enveloppant dans un conteneur ou une boîte de taille.

0
Amsakanna