Assigning ToDoItems
For the final step, we need to throw the list item to the detail page. Get back to createPage.xaml.cs, on the OnReview function.
private void OnReview(object sender, EventArgs e)
{
Navigation.PushAsync(new ListTaskPage(toDoItems));
}