I am developing the app in Xamarin Forms and I have faced a bug that should be fixed long time ago.
I tried to set outline for frame and it works good on ios but doesn't work on android.
Here is my xaml for Frame.
<Frame
HasShadow="true"
CornerRadius="10"
OutlineColor="Red"
BackgroundColor="White">
<StackLayout
Orientation="Horizontal">
<Label
Text="TEST"
VerticalOptions="Center"/>
<Label
Text="For OUTLINE"
VerticalOptions="Center"/>
</StackLayout>
</Frame>
Thanks for any help!