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