зеркало из https://github.com/DeGsoft/maui-linux.git
[A] Don't set TabbedPage BarTextColor to nothing (#113)
This commit is contained in:
Родитель
ecf0e47ad6
Коммит
c0baf7fc3e
|
@ -359,14 +359,14 @@ namespace Xamarin.Forms.Platform.Android.AppCompat
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateBarTextColor()
|
void UpdateBarTextColor()
|
||||||
{
|
{
|
||||||
if (_disposed || _tabLayout == null)
|
if (_disposed || _tabLayout == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var textColor = Element.BarTextColor.ToAndroid().ToArgb();
|
Color textColor = Element.BarTextColor;
|
||||||
|
if (!textColor.IsDefault)
|
||||||
_tabLayout.SetTabTextColors(textColor, textColor);
|
_tabLayout.SetTabTextColors(textColor.ToAndroid().ToArgb(), textColor.ToAndroid().ToArgb());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Загрузка…
Ссылка в новой задаче