CopyPastor

Detecting plagiarism made easy.

Score: 0.8001277446746826; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2021-04-25
by Chizaram Success

Original Post

Original - Posted on 2020-07-26
by Jigar Patel



            
Present in both answers; Present only in the new answer; Present only in the old answer;

I think you can try wrapping the `ListView` inside a `Container` and give a suitable `height` and `width.


Row( children: [ Expanded( flex: 5, child: Column( children: [ DataTable(), ElevatedButton() ] ), // Column ), // Expanded Expanded( flex: 5, child: Column( children: [ Container( height:, width:, child: ListView()), ElevatedButton() ] ), // Column ) // Expanded ] ) // Row

You could do something like this..
Row( children: [ Expanded( child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text('Some other text'), RaisedButton( child: Text('Button'), onPressed: (){}, ), ], ), ), Expanded( child: RaisedButton( child: Text('Button'), onPressed: (){}, ), ), ], )

        
Present in both answers; Present only in the new answer; Present only in the old answer;