vlkam

Results 28 comments of vlkam

The very bad error. This can happen for many reasons https://stackoverflow.com/questions/10593022/monodroid-error-when-calling-constructor-of-custom-view-twodscrollview/10603714#10603714

FlowList is a list basically. It's not a collection view

Sometimes not optimal layout is the causes of lags Show your DataTemplate

There is Prism also Try to remove bindings one by one to find out which binding the cause of error and then check this binding

It's not the FlowList's binding it's Xamarin Forms binding. Sometimes the Xamarin Forms Bindings don't convert value to string automatically and there is need a converter. Here is my converter...

> Pictures = new FlowObservableCollection< object >(sorted); Why do you use the object as generic type ?

> i want to set a flowlistview inside a flowlistview or listview. I don't think that's a good idea. Perhaps you need RepeaterView or Collection or BindableLayout inside FlowListView

` ` Labels have to be inside a Layout. Grid or Stack as example You missed StackLayout ![image](https://user-images.githubusercontent.com/7336057/50740234-4515d400-11fc-11e9-9696-7d3d7ae3aa83.png)

Do you try to remove ViewCell section ? It's not necessary for FlowList

Try to add this line var a = HomeViewModel.factors; in code behind file **before** InitializeComponent(); Pay attention on property "factors" It's static property in static class. If it will be...