Answers for "how to set the width and height of an row in flutter"

2

flutter container height 100 percent

MediaQuery.of(context).size.height * 0.25
Posted by: Guest on June-19-2020
1

size row to maximum flutter

// Set Expanded height to Row height

IntrinsicHeight(
        child: Row(crossAxisAlignment: CrossAxisAlignment.stretch, children: [
          Expanded(
            child: Column(children: [
              Container(height: 120.0, color: Colors.yellow),
              Container(height: 100.0, color: Colors.cyan),
            ]),
          ),
          Expanded(child: Container(color: Colors.amber)),
        ]),
Posted by: Guest on September-22-2020

Code answers related to "how to set the width and height of an row in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language