Divyesh

Results 15 comments of Divyesh

@lwg-jmarciniak **Hi there** - I have used this plugin in my project and (command) it's working fine. You can check working sample here: [XF.Material Sample](https://github.com/divyesh008/XFMaterialSample) Platform: - [x] 📱 iOS...

I have recently used this control in my project and it's working fine in Xamarin Forms 5.0.0.2244

Yes, the best way to deal with this issue is either to use paid 3rd party libraries like Syncfusion, or Telerik or else use Picker control.

I have same query on this, is there any update on it?

> ``` > > RowHeight="70" HeaderHeight="50" BorderColor="#CCCCCC" HeaderBackground="#E0E6F8" > PullToRefreshCommand="{Binding RefreshCommand}" IsRefreshing="{Binding IsRefreshing}" > WidthRequest="600" > ActiveRowColor="#8899AA"> > ``` ### This will crash in UWP project with this exception: -...

Change **Command to ICommand** ``` public ICommand LoadMoreCommand { get; private set; } public ViewModelMain() { LoadMoreCommand = new Command(async () => { await LoadMoreData(); }); } public async Task...

> Same here. I'm temporarily wrapping the FlexLayout inside a StackLayout until this issue is solved. Yes, exactly, I am facing this issue yet so I have wrapped FlexLayout with...

Here is a temporary work around using the Scrolled event of CollectionView. ```c# private bool isScrolling = false; private double previousScrollY = 0; void CollectionView_Scrolled(System.Object sender, Microsoft.Maui.Controls.ItemsViewScrolledEventArgs e) { if...

@Flais glad it helped you. But if you still face an issue with the workaround, you have to use Syncfusion's SFListView control.