List<Assembly> assembliesToInclude = new List<Assembly>();
//Now, add in all the assemblies your app uses
assembliesToInclude.Add(typeof(SfListViewRenderer).GetTypeInfo().Assembly);
//Also do this for all your other 3rd party libraries
Xamarin.Forms.Forms.Init(e, assembliesToInclude); |
Hello,
Please read my message above. I have already written that I included this into assembliesToInclude and I am doing this for sfDataGrid and other Syncfusion tools but only sfListView doesnt work. it displays fine but selection doesnt work at all.
Thanks,
Emil
opps sorry I was including only SfListView
what is the difference between assembliesToInclude.Add(typeof(SfListViewRenderer).GetTypeInfo().Assembly); and assembliesToInclude.Add(typeof(SfListView).GetTypeInfo().Assembly);
do we need to include both or SfListViewRenderer is just fine?