I have a Xamarin forms app where I exhibit the result from different sensors all in one ListView. Every sensor populates a 'DataTemplate' ViewCell where I show the name, location and others and, in the central grid the values.
The point is that the visualization for those values should be different from each sensor (imagine I want a moving arrow for the wind, a growing blue box for the collected water, a number for the temperature, and so on)
Is it possible to return a custom UIElement, or a Grid or something from a IValueConverter and be able to do this task ? If not, what would you recommend ?
PS: I think that, what I want to do, is done via ContentPresenter. but .. I cannot find proper details on how to achieve it.