I was trying this example and I can get the first page up where all the blogs are listed in a GridView. But when I click on one, I’m supposed to see list of blogs with an area to read the blog – instead I keep getting this error below.
collection property __implicit_items is null Line 82 Position 45
I have the following on line 82 in the SplitPage.xaml. It is in the constructor for SplitPage that it fails which looks like this
public SplitPage()
{
this.InitializeComponent();
}
I went through it and am going through it again to see if I missed something but if there is something I’m obviously doing wrong, please let me know.
Figured it out. The actual error was parsing issues with XAML but it was due to which this collection was probably empty. Anyway, I removed this animation XAML at line 82 mentioned in the question and the app works now. Will look at the animation later.