Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created December 14, 2020 11:10
Embed
What would you like to do?
App.csml.cs
using Xamarin.Forms;
namespace ICTalkMobileApp
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new Views.AnalisisImagenView();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment