public static T GetChildViewController <T>(this IControllerHost host, string key) where T : Fragment, new() { return(host.GetChildViewController(key, () => new T())); }
public static T GetChildViewController <T>(this IControllerHost host) where T : Fragment, new() { return(host.GetChildViewController <T>(typeof(T).FullName)); }