Hi I am trying to use a vector drawable in my android app.
Here is the xml for the same
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="1024dp"
android:height="1024dp"
android:viewportWidth="1024"
android:viewportHeight="1024">
<path
android:pathData="M 0,0 L 50,0 L 50,50 z"
android:strokeColor="#000000" />
</vector>
and here is how it looks without any stroke width

If I add android:strokeWidth="10" here is how it looks

The stoke width is not consistent(same width) across all lines and the leftmost point seems to be not cut off
Is there any way through which all the 3 lines drawn are of consistent(same width) and not irregular?