System.ScrollViewExtensions.ScrollToEnd C# (CSharp) Method

ScrollToEnd() public static method

public static ScrollToEnd ( NestedScrollView scrollView ) : void
scrollView NestedScrollView
return void
        public static void ScrollToEnd(this NestedScrollView scrollView)
        {
            scrollView.Post(() =>
            {
                scrollView.FullScroll((int)FocusSearchDirection.Down);
            });
        }
    }
ScrollViewExtensions