Removing the ripple effect

This commit is contained in:
Gaspard Merten 2021-01-22 19:43:15 +01:00
parent 330eb928d7
commit aa20bfc716
5 changed files with 76 additions and 74 deletions

View file

@ -312,16 +312,9 @@ class _InputDropdown extends StatelessWidget {
suffixIcon: const Icon(Icons.arrow_drop_down),
).applyDefaults(Theme.of(context).inputDecorationTheme);
return Material(
color: Colors.transparent,
child: InkWell(
borderRadius: inkwellBorderRadius,
onTap: onPressed,
child: InputDecorator(
decoration: effectiveDecoration,
child: Text(text, style: textStyle),
),
),
return InputDecorator(
decoration: effectiveDecoration,
child: Text(text, style: textStyle),
);
}
}