Skip to content

Instantly share code, notes, and snippets.

@TheBaileyBrew
Created July 17, 2019 14:17
Show Gist options
  • Save TheBaileyBrew/a9962c40a1f90c78592119481ba70099 to your computer and use it in GitHub Desktop.
Save TheBaileyBrew/a9962c40a1f90c78592119481ba70099 to your computer and use it in GitHub Desktop.
public class NavigationFlyoutItemTemplateSelector : DataTemplateSelector
{
public DataTemplate NavigationHeaderTemplate { get; set; }
public DataTemplate NavigationItemTemplate { get; set; }
protected override DataTemplate OnSelectTemplate(object item, BindableObject container)
{
//Returning null, because at this point I'm not sure how to select the correct template
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment