Removing useless Row since the Icon is now contained in the suffixIcon of the input decoration

This commit is contained in:
Gaspard Merten 2020-07-14 16:34:33 +02:00
parent 2ca0f8d803
commit 65408b496a

View file

@ -253,13 +253,7 @@ class _InputDropdown extends StatelessWidget {
child: InputDecorator(
decoration: effectiveDecoration,
baseStyle: textStyle,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Text(text, style: textStyle),
],
),
child: Text(text, style: textStyle),
),
),
);