Reputation: 24592
I would like to know what the value of the border width is and where it's set in the code.
Can anyone point me to this value / area?
Upvotes: 0
Views: 73
Reputation: 89169
Apparently it's not being used by Frame
// not currently used by frame double IBorderElement.BorderWidth => -1d;
the Android renderer uses a StrokeWidth of 1
paint.StrokeWidth = 1;
so does iOS
Layer.BorderWidth = 1;
Upvotes: 1