diff --git a/b0esche_cloud/lib/widgets/organization_settings_dialog.dart b/b0esche_cloud/lib/widgets/organization_settings_dialog.dart index 30560d1..e617310 100644 --- a/b0esche_cloud/lib/widgets/organization_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/organization_settings_dialog.dart @@ -556,16 +556,17 @@ class _OrganizationSettingsDialogState data: Theme.of(context).copyWith( splashFactory: NoSplash.splashFactory, buttonTheme: ButtonThemeData(splashColor: Colors.transparent), + materialTapTargetSize: MaterialTapTargetSize.shrinkWrap, + highlightColor: Colors.transparent, + splashColor: Colors.transparent, ), child: DropdownButtonFormField( initialValue: selectedRole, items: ['admin', 'member'].map((role) { return DropdownMenuItem( value: role, - child: InkWell( - splashFactory: NoSplash.splashFactory, - highlightColor: Colors.transparent, - splashColor: Colors.transparent, + child: Material( + type: MaterialType.transparency, child: Text(role), ), );