Fixing critical issue
This commit is contained in:
parent
aa20bfc716
commit
525e980e20
5 changed files with 88 additions and 78 deletions
|
@ -312,9 +312,12 @@ class _InputDropdown extends StatelessWidget {
|
|||
suffixIcon: const Icon(Icons.arrow_drop_down),
|
||||
).applyDefaults(Theme.of(context).inputDecorationTheme);
|
||||
|
||||
return InputDecorator(
|
||||
decoration: effectiveDecoration,
|
||||
child: Text(text, style: textStyle),
|
||||
return GestureDetector(
|
||||
onTap: onPressed,
|
||||
child: InputDecorator(
|
||||
decoration: effectiveDecoration,
|
||||
child: Text(text, style: textStyle),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue