Esempio n. 1
0
 /// <summary>
 /// Configures the host services with an insatnce of <see cref="IXamarinHostingPlatform"/>
 /// </summary>
 /// <param name="builder">The <see cref="IXamarinHostBuilder"/> to configure.</param>
 /// <param name="app">The instance of <see cref="FormsApplicationDelegate"/> to register.</param>
 /// <returns>The <see cref="IXamarinHostBuilder"/>.</returns>
 public static IXamarinHostBuilder UsePlatform(this IXamarinHostBuilder builder, FormsApplicationDelegate app)
 {
     return(builder.UsePlatform(new IOSHostingPlatform(app)));
 }
Esempio n. 2
0
 /// <summary>
 /// Configures the host services with an insatnce of <see cref="IXamarinHostingPlatform"/>
 /// </summary>
 /// <param name="builder">The <see cref="IXamarinHostBuilder"/> to configure.</param>
 /// <param name="app">The instance of <see cref="FormsAppCompatActivity"/> to register.</param>
 /// <returns>The <see cref="IXamarinHostBuilder"/>.</returns>
 public static IXamarinHostBuilder UsePlatform(this IXamarinHostBuilder builder, FormsAppCompatActivity app)
 {
     return(builder.UsePlatform(new AndroidHostingPlatform(app)));
 }