I want to have a gradient like below image.
I have created this shape but even after trying so many times I couldn't achieve such type of gradient. Any help would be highly appreciated.
This is the work I've done:
<shape android:shape="rectangle">
<gradient
android:startColor="@color/red"
android:centerColor="@color/light_red"
android:endColor="@color/light_red"
android:angle="90"
/>
<corners
android:radius="20dp"
/>
</shape>