DLToolkit.Forms.Controls icon indicating copy to clipboard operation
DLToolkit.Forms.Controls copied to clipboard

Flowlistview scroll problem

Open weihsiang0721 opened this issue 5 years ago • 2 comments

I want to removing flowlistview the scroll Attributes How can i do? I find this but the i can't correct use this. https://github.com/daniel-luberda/DLToolkit.Forms.Controls/issues/74

weihsiang0721 avatar Mar 25 '19 02:03 weihsiang0721

this problem happen to iOS system

weihsiang0721 avatar Mar 25 '19 02:03 weihsiang0721

The issue crosses Android and iOS. My flow list view has hidden items so in this case, it's scrollable. So nothing wrong with FlowListView. To disable scrolling, private void ListView_Scrolled(object sender, ScrolledEventArgs e) { var listView = (ListView)sender; var firstItem = listView.ItemsSource.OfType().First(); listView.ScrollTo(firstItem, ScrollToPosition.Start, false); }

j2bmw avatar Aug 05 '20 05:08 j2bmw