Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created December 14, 2020 11:10
Show Gist options
  • Save icebeam7/d4fb9c7257323dfed597e9fef81ff1c5 to your computer and use it in GitHub Desktop.
Save icebeam7/d4fb9c7257323dfed597e9fef81ff1c5 to your computer and use it in GitHub Desktop.
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