This commit is contained in:
kingces95 2019-08-29 13:39:49 -10:00 коммит произвёл Samantha Houts
Родитель 09acfd48d4
Коммит ab3665c13e
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -81,6 +81,9 @@ namespace Xamarin.Forms.Platform.iOS
public void Close()
{
if (_scroller == null)
return;
_scroller.ContentOffset = new PointF(0, 0);
}

Просмотреть файл

@ -21,7 +21,7 @@ namespace Xamarin.Forms.Platform.iOS
#if DEBUG
if (oldvalue != null && newvalue != null)
{
Log.Warning("Renderer", $"{bindable} already has a renderer attached to it: {oldvalue}. Please figure out why and then fix it.", nameof(oldvalue));
Log.Warning("Renderer", $"{bindable} already has a renderer attached to it: {oldvalue}. Please figure out why and then fix it.");
}
#endif
var view = bindable as VisualElement;