i have this button i saw on a website and I want to recreate it in xml. But, i cannot get the dimensions right to match it exactly. Below is the code i have so far, but it's not matching the shape exactly. hope someone can help!
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid
android:color="@color/white"></solid>
<corners
android:radius="600dp" />
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
<stroke
android:width="3px" android:color="@color/salmon_main"/>
</shape>