Unverified Commit bd909159 authored by Hamdi Kahloun's avatar Hamdi Kahloun Committed by GitHub

Fix Semi Hidden helpText in showDatePicker (#65010)

Wrapping the spacing SizedBox in Flexible.
parent 214dac92
...@@ -141,8 +141,8 @@ class DatePickerHeader extends StatelessWidget { ...@@ -141,8 +141,8 @@ class DatePickerHeader extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
const SizedBox(height: 16), const SizedBox(height: 16),
Flexible(child: help), help,
const SizedBox(height: 38), const Flexible(child: SizedBox(height: 38)),
Row( Row(
children: <Widget>[ children: <Widget>[
Expanded(child: title), Expanded(child: title),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment