alexeyinkin commented on code in PR #22794:
URL: https://github.com/apache/beam/pull/22794#discussion_r960388124
##########
learning/tour-of-beam/frontend/lib/pages/welcome/screen.dart:
##########
@@ -65,15 +65,23 @@ class _SdkSelection extends StatelessWidget {
@override
Widget build(BuildContext context) {
- return ColoredBox(
+ return Container(
+ constraints: BoxConstraints(
+ minHeight: MediaQuery.of(context).size.height -
Review Comment:
Can the `Positioned` contain something like this?
```dart
Row(
children: [
Expanded(/* laptop */),
Expanded(/* empty SizedBox */),
],
),
```
The two `Expanded`s will split the full width in half. And the laptop will
occupy the full width of its half.
If it works, we may need to put this under the content so that the right
half does not make the content unclickable.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]