зеркало из https://github.com/DeGsoft/maui-linux.git
- fixes #2634
This commit is contained in:
Родитель
5fdec77627
Коммит
7bcdf6d6b4
|
@ -247,7 +247,11 @@ namespace Xamarin.Forms.Platform.Android.FastRenderers
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Color borderColor = Element.BorderColor;
|
Color borderColor = Element.BorderColor;
|
||||||
_backgroundDrawable.SetStroke(3, borderColor.IsDefault ? AColor.White : borderColor.ToAndroid());
|
|
||||||
|
if (borderColor.IsDefault)
|
||||||
|
_backgroundDrawable.SetStroke(0, AColor.Transparent);
|
||||||
|
else
|
||||||
|
_backgroundDrawable.SetStroke(3, borderColor.ToAndroid());
|
||||||
}
|
}
|
||||||
|
|
||||||
void UpdateShadow()
|
void UpdateShadow()
|
||||||
|
|
Загрузка…
Ссылка в новой задаче