Как изменить цвет ripple у иконки в TextInputLayout?
Прикрепляю изображения чтобы точнее показать.
На втором едва заметная анимация пульсации. Хочу ее изменить как это сделать?
Код макета активности с TextInputLayout
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/text_edit"
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.Dense"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:focusableInTouchMode="true"
android:hint="@string/question_hint"
app:endIconDrawable="@drawable/baseline_send_black_24"
app:endIconMode="custom"
app:endIconTint="@color/colorPrimary">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>

