I'm failing to display one json object in XAML in xamarin.forms, everywhere i search there are only list or collection methods to display json in xaml. What I recieve is only one json object, and these (listview and collection) methods fail to display this object.
I managed to recieve the object json content in C#, so the only problem is to pass it to XAML so it could be displayed.
I'm starting to think that Xamarin.forms cannot display one json object, only lists.
There is also list of these Json objects which I successfully pass as table, so i tried to point to specific object (using its ID) <CollectionView ItemsSource="{Binding List[4]}" but that causes that neither list or that one object is displayed then.
Convert to string helped, thak you guys. To be specific i used this Show JSON response through binding (Xamarin forms)